随笔分类 -  GIT

摘要:delete branch locally git branch -d localBranchName delete branch locally force git branch -D localBranchName delete branch remotely git push origin - 阅读全文
posted @ 2023-02-28 13:47 艺言弈行 阅读(23) 评论(0) 推荐(0) 编辑
摘要:创建好远程仓库,然后要从本地上传代码到远程仓库: 1.git init 初始化git本地仓库 2. git add 添加到暂存区 3. git commit -am "提交备注" 4. git remote add origin git@git.oschina.net:xxx.git 添加git远程 阅读全文
posted @ 2016-07-13 17:24 艺言弈行 阅读(3029) 评论(0) 推荐(1) 编辑
摘要:转自http://git.oschina.net/oschina/git-osc/issues/2586 https方式每次都要输入密码,按照如下设置即可输入一次就不用再手输入密码的困扰而且又享受https带来的极速 设置记住密码(默认15分钟): git config --global crede 阅读全文
posted @ 2016-06-14 10:11 艺言弈行 阅读(1445) 评论(0) 推荐(1) 编辑
摘要:ssh-keygen -t rsa -C "xxx@xxx.com" 生成后使用cat或者vim 查看该rsa,然后复制到github的ssh keys中: 提示: Key is invalid Fingerprint cannot be generated 解决方案: 找到该目录,使用文本工具打开 阅读全文
posted @ 2016-04-08 11:41 艺言弈行 阅读(3862) 评论(0) 推荐(0) 编辑
摘要:1. 打开git bash 2.点击左上角,选择属性,打钩 3.回到界面,选择一行文字,然后点击 “右键”,这样就复制到剪切板了。再点 “右键”,可以粘贴到命令窗口中了。 阅读全文
posted @ 2016-04-06 13:34 艺言弈行 阅读(6588) 评论(0) 推荐(0) 编辑