将你的本地代码上传到github或者aliyuncode进行托管

201 阅读1分钟

#将你的本地代码上传到github或者aliyuncode进行托管
##第一步:cd到你的项目根目录,建立本地仓库

git init

##第二步:将你的项目添加到本地仓库

git add .

##第三步:将你提交的文件commit到本地仓库

git commit -m "你提交的备注(注释)"

##第四步:将你的本地仓库关联到github(阿里云code)远程仓库

####GitHub

git remote add origin https://github.com/XXX/XXX

####阿里云code

git remote add origin git@code.aliyun.com:XXX/xxx.git

##第四步:将本地代码push到远程仓库

git push origin master

回车输出类似以下内容就表示成功了

The authenticity of host 'github.com (52.74.223.119)' can't be established.
RSA key fingerprint is SHA256:nThbg6kXUpJWGl7E1IGOCspRomTxdCARLviKw6E5SY8.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added 'github.com,52.74.223.119' (RSA) to the list of known hosts.
Enter passphrase for key '/c/Users/adam_liu/.ssh/id_rsa':
Counting objects: 13850, done.
Delta compression using up to 2 threads.
Compressing objects: 100% (13140/13140), done.
Writing objects: 100% (13850/13850), 16.37 MiB | 1.10 MiB/s, done.
Total 13850 (delta 3584), reused 0 (delta 0)
remote: Resolving deltas: 100% (3584/3584), done.
To github.com:liudandandear/Express-apidemo.git
 * [new branch]      master -> master
Branch 'master' set up to track remote branch 'master' from 'origin'.```