forked from sudhirwadhwa/jh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquickadd
40 lines (32 loc) · 1.31 KB
/
quickadd
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
28
29
30
31
32
33
34
35
36
37
38
39
40
Sudhirs-MacBook-Pro:jh sudhirwadhwa$ ls
README.md a addandpushingit setupgit
Sudhirs-MacBook-Pro:jh sudhirwadhwa$ pwd
/Users/sudhirwadhwa/datatrack/jh
Sudhirs-MacBook-Pro:jh sudhirwadhwa$ git status
On branch master
Your branch is up-to-date with 'jh/master'.
Untracked files:
(use "git add <file>..." to include in what will be committed)
addandpushingit
nothing added to commit but untracked files present (use "git add" to track)
Sudhirs-MacBook-Pro:jh sudhirwadhwa$ git add addandpushingit
Sudhirs-MacBook-Pro:jh sudhirwadhwa$ git status
On branch master
Your branch is up-to-date with 'jh/master'.
Changes to be committed:
(use "git reset HEAD <file>..." to unstage)
new file: addandpushingit
Sudhirs-MacBook-Pro:jh sudhirwadhwa$ git commit -m "adding addandpushingit"
[master 86f6111] adding addandpushingit
1 file changed, 70 insertions(+)
create mode 100644 addandpushingit
Sudhirs-MacBook-Pro:jh sudhirwadhwa$ git push -u jh master
Counting objects: 4, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (3/3), done.
Writing objects: 100% (3/3), 979 bytes | 0 bytes/s, done.
Total 3 (delta 0), reused 0 (delta 0)
To https://github.com/sudhirwadhwa/jh.git
cbfd303..86f6111 master -> master
Branch master set up to track remote branch master from jh.
Sudhirs-MacBook-Pro:jh sudhirwadhwa$