sh GIT처음초기화(GIT初始)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh GIT처음초기화(GIT初始)相关的知识,希望对你有一定的参考价值。

#…or create a new repository on the command line
echo "# ColaBear" >> README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/BearCola/ColaBear.git
git push -u origin master

#…or push an existing repository from the command line
git remote add origin https://github.com/BearCola/ColaBear.git
git push -u origin master

以上是关于sh GIT처음초기화(GIT初始)的主要内容,如果未能解决你的问题,请参考以下文章

sh macOS Sierra에서원화(₩)대신백쿼트(`)입력하기

javascript promise(비동기처리)

text git rebase로변경된timestamp원상복귀하기

markdown SVN에서Git으로전환하기(브랜치와태그보전하면서)

sh Git初始提交

sh 如何使用Git初始推送到远程存储库