⇤ ← Revision 1 as of 2015-06-09 18:34:50
Size: 783
Comment:
|
Size: 842
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 20: | Line 20: |
git add * | git add * # or "." if you want to add all the files in the hierarchy |
Starting a git repository?
First setup the remote repository:
ssh git@example.com cd repos # you shouldn't use the base user directory for good reasons -- See SshGen page mkdir my_project.git cd my_project.git git init --bare git update-server-info # If planning to serve via HTTP exit
On your local machine:
cd [your project directory] git init git add * # or "." if you want to add all the files in the hierarchy git commit -m "My initial commit message" git remote add origin git@example.com:repos/my_project.git git push -u origin master
Others can now clone track the remote repository:
git clone git@example.com:repos/my_project.git cd my_project
Adapted from: http://thelucid.com/2008/12/02/git-setting-up-a-remote-repository-and-doing-an-initial-push/