标签:使用 conf one rem ssh git clone add oba 代码
git config --global user.name "xxxx"
git config --global user.email "xxxx@xxxxxx.com"
如果要简单地克隆此空存储库,请在终端中运行此命令。
git clone ssh://git@xxxxxxx
如果你代码已经准备好推送到仓库,请在终端中执行该命令
cd existing-project
git init
git add --all
git commit -m "Initial Commit"
git remote add origin ssh://git@xxxxxxx
git push -u origin master
如果你的代码已经由Git跟踪,然后设置这个仓库作为你的“origin”推送。
cd existing-project
git remote set-url origin ssh://git@xxxxxxxx
git push -u origin master
标签:使用 conf one rem ssh git clone add oba 代码
原文地址:https://www.cnblogs.com/cangqinglang/p/8984457.html