牛客项目平台上传攻略
牛客项目平台上传攻略:
如何创建项目
▶ Step1
打开你的主页,点击左侧的项目,设置好邮箱和密码(这是Git提交的独立账户和密码)
▶ Step2
再通过项目-新建项目,新建完项目以后再在本地提交项目到牛客就行啦。
如何通过命令行提交到牛客项目库呢?
很简单的如下操作
(注意一下 https://git.nowcoder.com/77/nowcoder.git 要替换成你项目地址)
再执行最后一步git push的时候输入在个人主页设置的邮箱和密码就行啦~~
本地已有项目目录,未关联Git仓库:
cd existing_folder git init git remote add origin https://git.nowcoder.com/77/nowcoder.git git add . git commit -m "Initial commit" git push -u origin master
已有Git仓库目录:
cd existing_repo git remote rename origin old-origin git remote add origin https://git.nowcoder.com/77/nowcoder.git git push -u origin --all git push -u origin --tags
从GitHub搬运到牛客:
git clone https://github.com/jfinal/jfinal.git cd jfinal git remote rename origin old-origin git remote add origin https://git.nowcoder.com/77/nowcoder.git git push -u origin --all git push -u origin --tags