17 Star 153 Fork 68

詹泽彬/net 脚手架

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
码云仓库指令.txt 1.17 KB
一键复制 编辑 原始数据 按行查看 历史
詹泽彬 提交于 2020-07-15 23:13 . 修改码云代码指令
Git 全局设置:
git config --global user.name "詹泽彬"
git config --global user.email "[email protected]"
创建 git 仓库:
1.使用ssh-keygen -t rsa -C [email protected] 你的邮件地址 命令,创建公钥,如下
2. cat ~/.ssh/id_rsa.pub
3.git clone ssh地址
各种操作
git status //查看git 工作台是否干净
git add . //添加新的文件
git commit -m 'init' //提交项目到本地库,注释为'init'
git push origin master //提交项目到远程库
git remote -v: 查看远程仓库详细信息,可以看到仓库名称
git remote remove orign: 删除orign仓库(如果把origin拼写成orign,删除错误名称仓库)
git remote add origin 仓库地址: 重新添加远程仓库地址
//首次提交
gti push -u origin master: 提交到远程仓库的master主干
更新远程仓库到本地 https://www.cnblogs.com/nicknailo/p/9044368.html
错误: git commitYour branch is up-to-date with 'origin/master'.
方案一处理网站 :https://blog.csdn.net/weixin_42047790/article/details/87167397
方案二
1. git branch new
2. git checkout new
3. git add .
4. git commit -m "XXXX"
5. git checkout master
6. git merge newbranch
7. git push -u origin master
8. git branch -D new
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/13631271072QQ/scaffolding.git
[email protected]:13631271072QQ/scaffolding.git
13631271072QQ
scaffolding
net 脚手架
master

搜索帮助