Category: git

Basic Git Command Summary

Basic git command summary. It is hard to see because it was originally made for me. init $ git init Create a repository in the directory. $ git init –bare Create Bare Repository $ git init –shared Enable group write permission. add $ git add [filename] Index files and directories. $ git add -A Add the contents of the work tree including all changes to the index. $ git add -u Only files that I […]