-
Notifications
You must be signed in to change notification settings - Fork 0
Merge changes from this template repository
Takayuki Sato edited this page Mar 11, 2023
·
3 revisions
This page illustrates how to merge changes from this template repository.
-
Add this template repository to your repository
git remote add template https://github.com/xslet/xslt-repo-template.git
-
Fetch the changes
git fetch --all
-
Merge the changes
git merge template/main --allow-unrelated-histories
-
Skip the changes
If your repository have files each of which has same name but different content and is not target of marge, reset and restore those files.
git reset file1 file2 ... git restore file1 file2 ...
-
Resolve conflicts
Edit files to resolve conflicts.
vi file3 file4 ...
-
Commit
git commit