Answers for "svn git equivalent commands"

1

svn git equivalent commands

git clone 		Copy a repository 				svn checkout
git commit 		Record changes to file history 	svn commit
git show 		View commit details 			svn cat
git status 		Confirm status 					svn status
git diff 		Check differences 				svn diff
git log 		Check log 						svn log
git add 		Addition 						svn add
git mv 			Move 							svn mv
git rm 			Delete 							svn rm
git checkout 	Cancel change 					svn revert
git reset 		Cancel change 					svn revert
git branch 		Make a branch 					svn copy
git checkout 	Switch branch 					svn switch
git merge 		Merge 							svn merge
git tag 		Create a tag 					svn copy
git pull 		Update 							svn update
git fetch 		Update 							svn update
git push 		It is reflected on the remote 	svn commit
.gitignore 		Ignore file list 				.svnignore
Posted by: Guest on March-28-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language