A tour of git: the basics - 0 views
-
it's useful to use "git clone" even when just making a local copy of a repository. Using "git clone" will be much faster and will use much less space than a normal copy.
-
A good commit message will generally have a single line that summarizes the commit, a blank line, and then one or more paragraphs with supporting detail. Since many tools only print the first line of a commit message by default, it’s important that the first line stands alone.
-
Note that we didn't use "commit -a" this time. This means that "git commit --amend" will amend only the commit message and not any of the actual files being tracked, (even if some of them had been modified between the commits). It's also possible to use "git commit -a --amend" to similarly fix up mistakes noticed in code. That will replace the most recent commit with a different commit based on any new changes to files.
- ...19 more annotations...
Zack Rusin: Git cheat sheet - 0 views
Git - SVN Crash Course - 0 views
Everyday GIT With 20 Commands Or So - 0 views
My Git Workflow - 1 views
An Illustrated Guide to Git on Windows - 1 views
Insider Guide to GitHub Series - GitHub - 2 views
git rebase: keeping your branches current :: James Bowes - 1 views
Documentation of git - 0 views
Deploying a Git Repository Server in Ubuntu « Battery Powered - 0 views
Contribute (Android Open Source Project) - 0 views
Setting up your Git repositories for open source projects at GitHub « Insoshi... - 0 views
-
In setting up the repositories for Insoshi, I’ve applied the version control experience I gained at Discover, where I was technical lead for the software configuration management (SCM) team.
-
Except for that interaction, everyone works within their own repository and on their own schedule. There’s no process waiting to be completed that blocks you from moving on to whatever you need/want to do next. And you’re not forcing anyone to drop what they’re doing to right now to handle your request.
-
One of the major benefits of a distributed version control system like Git is that each repository is on an equal footing; in particular, we would like every fork to have the same master branch, so that if the “official” Insoshi repository should ever be lost there would be plenty of redundant backups.
- ...14 more annotations...
How do you use git svn? - Stack Overflow - 0 views
SourceForge.net: QGit viewer - 0 views
‹ Previous
21 - 40 of 66
Next ›
Last »
Showing 20▼ items per page