Git 명령 노트

1202 단어 git
코드 클라우드 창고 만들기 및 코드 업로드
Git 글로벌 설정:
git config --global user.name "your name"
git config --global user.email "your email"

git 저장소를 만들려면 다음과 같이 하십시오.
git status //    
git add .
git commit -m "first commit"
git remote add origin https://gitee.com/li_wen_li/test.git
git push -u origin master

창고가 있습니까?
cd existing_git_repo
git remote add origin https://gitee.com/li_wen_li/test.git
git push -u origin master

코드 클라우드 생성 지점 및 전환
git checkout -b login  //login     
git branch //      

미완성

좋은 웹페이지 즐겨찾기