Skip to content

Coduck-Team/git-playground

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

git-playground

git2를 사용한 git 클라이언트

init

git init

init을 통해 repository를 생성한다.

add

git add <path>

add를 통해 변경된 파일을 스테이지에 올린다.

commit

git commit <msg>

commit을 통해 스테이지 된 파일을 기록한다.

log

git log

log를 통해 commit 기록을 확인한다.

push

git push <remote> <refspec>

push를 통해 commit된 변경사항을 remote에 반영한다.

revert

git revert

revert를 통해 commit을 되돌린다.

branch

git branch

branch를 통해 브랜치 목록을 보여준다.


git branch <branch_name>

branch를 통해 <branch_name> 브랜치를 생성한다.


git branch -d <branch_name>

branch를 통해 <branch_name> 브랜치를 삭제한다.

About

git2를 사용한 git 클라이언트

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages