2016년 10월 6일 목요일

Git 변경사항 반영하기

아래와 같이 로컬의 변경사항을 git repository로 반영할 수 있다.

shasha@shasha MINGW64 /c/development/git_project/gitTestRepository (master)
$ git add *

shasha@shasha MINGW64 /c/development/git_project/gitTestRepository (master)
$ git commit -m "changing something"
[master b5e98b2] changing something
 1 file changed, 1 deletion(-)

shasha@shasha MINGW64 /c/development/git_project/gitTestRepository (master)
$ git push origin master
Counting objects: 3, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (3/3), done.
Writing objects: 100% (3/3), 286 bytes | 0 bytes/s, done.
Total 3 (delta 2), reused 0 (delta 0)
remote: Resolving deltas: 100% (2/2), completed with 2 local objects.
To https://github.com/test/gitTestRepository.git
   64e487e..b5e98b2  master -> master

댓글 없음 :

댓글 쓰기