$ git config --global user.name "John Doe"
$ git config --global user.email [email protected]
기존 프로젝트 디렉토리를 Git 저장소로 만들기 프로젝트 최상단 디렉토리에서 아래 명령을 실행한다.
$ git init
or
$ git init <repo_dir>
기존 Git 리모트 저장소에서 Clone 하기
$ git clone <https://github.com/libgit2/libgit2>
or
$ git clone <https://github.com/libgit2/libgit2> <mylibgit>
git remote add orign [[email protected]](<mailto:[email protected]>):egoing2/gitflow.git
git remote -v
git branch <branchname>
git checkout <branch>
git branch -d <branchname>
git push origin --delete <branchname>
git commit --amend