
git
akko_
求一份前端开发工作,base武汉
展开
-
git 常用命令
Git常用操作命令收集: 远程仓库相关命令 检出仓库:$ git clone git://github.com/jquery/jquery.git 查看远程仓库:$ git remote -v 添加远程仓库:$ git remote add [name] [url] 删除远程仓库:$ git remote rm [name] 修改远程仓库:$ git remote set-url --push[name][newUrl] 拉取远程仓库:$ git pull [remoteName] [localBranc转载 2020-07-21 00:07:15 · 123 阅读 · 0 评论 -
Git命令笔记
码云创建仓库并上传代码 Git 全局设置: git config --global user.name "your name" git config --global user.email "your email" 创建 git 仓库: git status //检查状态 git add . git commit -m "first commit" git remote add origin https://gitee.com/li_wen_li/test.git git push -u origin m原创 2020-07-20 23:17:39 · 125 阅读 · 0 评论