deloschang/Ajemem-Prototype
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Repository files navigation
Ajemem uploaded via github Resources: http://help.github.com/create-a-repo/ Cheatsheet: http://help.github.com/git-cheat-sheets/ Steps to Push: 1) Identify yourself to git - git config --global user.name "Delos Chang" - git config --global user.email "lol.i.laugh@gmail.com" 2) Start using git - git init 3) Scheduling the addition of an individual file to the next commit - git add [file name] OR (to add the entire directory) - git add . 4) Committing files with comments - git commit -m "First import" The code above executes actions locally, meaning you still haven’t done anything on GitHub yet. To connect your local repository to your GitHub account, you will need to set a remote for your repo and push your commits to it: 5) Pushing commited files to repo $ git remote add origin git@github.com:username/Ajemem-Prototype.git // Sets the origin for the Ajemem-Prototype repo $ git push origin master