-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
executable file
·27 lines (19 loc) · 931 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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 "[email protected]"
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 [email protected]:username/Ajemem-Prototype.git // Sets the origin for the Ajemem-Prototype repo
$ git push origin master