Git: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 35: | Line 35: | ||
'''lightweight tag''' | '''lightweight tag''' | ||
git tag v1.5_initial_setup | git tag v1.5_initial_setup | ||
==Git Branch== | |||
'''create and checkout a new branch''' | |||
git checkout -b new_branch_name base_branch_name | |||
git checkout -b new_branch_name | |||
'''renaming and delete branch''' | |||
git branch -m old_branch_name new_branch_name | |||
git branch -D branch_to_delete_without_merge_status | |||
git branch -d branch_to_delete | |||
git push origin --delete branch_to_delete | |||
'''discard changes''' | |||
git checkout master -f | |||
'''git stashing''' | |||
git stash; git checkout -b new_branch; git stash pop | |||
git add .; git commit -m "new feature added"; git push | |||
'''rebase vs merge''' | |||
git rebase master #all the updated commits of master will be available in the feature branch | |||
git merge --squash feature #all the feature commits replaced by a new commit in the master | |||
git commit -m 'feature merged with master branch' | |||
==References== | ==References== |
Revision as of 05:32, 23 June 2021
git config --global user.name "Full Name" git config --global user.email "[email protected]" undo assume unchanged or assume unchanged git update-index --no-assume-unchanged src/main/resources/application.properties git update-index --assume-unchanged src/main/resources/application.properties list of files assume unchanged git ls-files -v|grep '^h'
Git Stash
git stash apply stash@{index} git stash drop stash@{index} git stash pop stash@{index} git stash clear git stash list |
git apply --3way ~/.chorke/tmp/academia/patch/v1.0.00.patch git apply ~/.chorke/tmp/academia/patch/v1.0.00.patch git diff > ~/.chorke/tmp/academia/patch/v1.0.00.patch git stash apply stash^{/stash_v1.0.00} git stash push -m stash_v1.0.00 |
Git Tag
annotated tag git tag -a v1.5_initial_setup -m 'initial setup' git tag -a v1.5_initial_setup
lightweight tag git tag v1.5_initial_setup
Git Branch
create and checkout a new branch git checkout -b new_branch_name base_branch_name git checkout -b new_branch_name
renaming and delete branch git branch -m old_branch_name new_branch_name git branch -D branch_to_delete_without_merge_status git branch -d branch_to_delete git push origin --delete branch_to_delete
discard changes git checkout master -f git stashing git stash; git checkout -b new_branch; git stash pop git add .; git commit -m "new feature added"; git push rebase vs merge git rebase master #all the updated commits of master will be available in the feature branch git merge --squash feature #all the feature commits replaced by a new commit in the master git commit -m 'feature merged with master branch'