HOW TO REBASE USING COMMAND LINE
In this example you want to copy all the changes from branch release/v1.0.0 into your branch.
go to your branch then type this commands
git pull
git pull --rebase origin release/v1.0.0
HOW TO COMMIT SOME CODE
git pull
git add -A
git commit -m "your remarks"
git push
Removing a file
git rm "Filename.txt"
Conflicts tools
git mergetool
0 comments:
Post a Comment