RSS feed
[root]
/
SCM
/
weblog
/
software_engineering
login:
password:
title search:
Search this site
Enter your search terms
Web
www.carfield.com.hk
Submit search form
Prev
Next
Fri Dec 25 12:40:57 HKT 2020
git
Suggestful github project -
http://rdegges.com/successful-github-development
GIT to SVN command guide -
http://www.javacodegeeks.com[..]vs-svn-commandline-syntax-reference.html
pretty cool guide -
http://martin.elwin.com[..]e-to-an-ioke-dev-env-from-source-part-1/
http://www.ralfebert.de/tutorials/git/
http://www.drdobbs.com[..]rticleId=240160261&siteSectionName=tools
http://www.drdobbs.com[..]&siteSectionName=architecture-and-design
Some comments about possible issues -
http://www.ericsink.com/entries/git_index.html
http://www.developer.com[..]an-streamline-your-writing-projects.html
Several ppl blog about why GIT better than SVN -
http://inancgumus.com[..]tages-of-git-over-subversion-svn-a-brief
http://altdevblogaday.org[..]03/09/its-time-to-stop-using-subversion/
http://blog.ashodnakashian.com/2011/06/git-for-personal-projects/
A suggested branching model -
http://nvie.com/posts/a-successful-git-branching-model/
Some advantage of GIT over Mercurial -
http://blog.extracheese.org[..]hy-i-switched-to-git-from-mercurial.html
#undo last commit
git reset HEAD^
#show files in a given commit
git show --pretty="format:" --name-only rev_number
#remove untracked files and directories
git clean -f -d
#track remote branch
git branch --track branch_name origin/master
# given you created a new local branch 'branch_name'
# pushes 'branch_name' to 'origin/branch_name', creating the remote branch for you
git push origin branch_name
#delete remote branch
git push origin :remote_branch_name
From
http://leonardoborges.com[..]ngs/2011/05/29/a-few-useful-git-commands
Some more suggested workflow -
http://eclipsesource.com/blogs/2011/06/09/git-lessons-learned/
http://sandofsky.com/blog/git-workflow.html
Move from SVN, experience of JIRA -
http://www.drdobbs.com[..]from-subversion-to-git-and-the/240009175
http://blogs.atlassian.com/2013/10/git-workflows-webinar-qa
Merge or Rebase?
http://blogs.atlassian.com[..]13/10/git-team-workflows-merge-or-rebase
http://www.javaworld.com[..]ntial-tips-for-git-and-github-users.html
change-default-git-commit-message-template -
http://blog.ajduke.in[..]nge-default-git-commit-message-template/
https://codewords.recurse.com/issues/two/git-from-the-inside-out
Git cheat list -
https://gist.github.com/aleksey-bykov/1273f4982c317c92d532
https://examples.javacodegeeks.com[..]re-development/git/git-commands-tutorial
https://dev.to/hector6872/how-good-are-git-hooks-14ho
https://medium.freecodecamp.org[..]nds-in-less-than-10-minutes-c53922625a73
https://medium.com[..]ployment-for-non-developers-7811dcf508bb
(google search)
(amazon search)
1
2
3
second
download zip of files only
Prev
Next