Quantcast
Channel: Robert Reiz » GIT
Browsing all 7 articles
Browse latest View live

Image may be NSFW.
Clik here to view.

Creating a branch with git

Just go into the root directory of your project and type in: git checkout -b branch1 That’s all. Now your created a new branch with the name “branch1″. Your working directory is now the branch. You can...

View Article



Image may be NSFW.
Clik here to view.

Create a GIT Repository

Just go into the directory you want to have version control for and type in: git init This will create an empty git repository on your hard disk. With this command git add . you can add all files in...

View Article

Image may be NSFW.
Clik here to view.

.gitignore

If you want that git is ignoring some files for you you just have to create the “.gitignore” file in your project root. Here you can add all the files you don’t want have in your git repository. For...

View Article

Image may be NSFW.
Clik here to view.

Add a project to github

github.com is a pretty good git repository server for open source projects. If you have an account you can add easily a project to your github repo. At first generate the git project by executing this...

View Article

Image may be NSFW.
Clik here to view.

Git add, commit, push, pull

If you make changes on your local repository you can add all your changes to your local history with git add . With the . you add all new files to the local history. With this command you commit...

View Article


Image may be NSFW.
Clik here to view.

Mountain Lion + Git

I just installed Mac OS X Mountain Lion, as an update via the app store. Worked pretty good. After less than 30 min it was installed. Everything worked. I just missed the command line tool git. To fix...

View Article

Image may be NSFW.
Clik here to view.

Git tagging

Note for me, how to tag with git. Because I always forget it! git tag -a v1.4 -m 'version 1.4' git tag The first line creates a tag with the annotation (-a) v1.4 and the message (-m) “version 1.4″. And...

View Article
Browsing all 7 articles
Browse latest View live




Latest Images