I use git commit --amend --no-edit
often.
Like if I forget to run a formatter before I commit and the build complains just for that.
git add -u
git commit --amend --no-edit
git push -f
Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency.
Resources
Rules
Git Logo by Jason Long is licensed under the Creative Commons Attribution 3.0 Unported License.
I use git commit --amend --no-edit
often.
Like if I forget to run a formatter before I commit and the build complains just for that.
git add -u
git commit --amend --no-edit
git push -f
I still haven't adopted to this git switch thing
make sure to run
cd ..
cp -r my-project my-project.bak
cd my-project
before running each command :)
before every git command i use:
tar -czvf my_directory.tar.gz -C my_directory .