
git-tech
tomjourney
积善之家 必有余庆
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
本地连接github仓库
【代码】本地连接github仓库。原创 2024-05-26 10:25:08 · 293 阅读 · 0 评论 -
git rebase命令(转)
转自: https://www.yiibai.com/git/git_rebase.html git rebase命令在另一个分支基础之上重新应用,用于把一个分支的修改合并到当前分支。 使用语法 git rebase [-i | --interactive] [options] [--exec <cmd>] [--onto <newbase>] [<upstream> [<branch>]] git rebase [-i | --inte转载 2021-07-03 19:23:04 · 626 阅读 · 0 评论 -
把本地库推送到github远程库
【1】 github上创建远程库 注意 ,远程库的名字要与本地库相同 【2】新建github远程库别名origin 【3】 代码提交 git add ./* : 把修改内容添加到暂存区 ; git commit -m 'msg' : 提交暂存区的修改内容到本地库; git push origin master :把本地库内容推送到远程库 ; ...原创 2021-07-01 06:45:14 · 195 阅读 · 0 评论 -
git连接到github(SSH无密码登陆)
【0】README 0.1)本文旨在尝试在linux环境下免密码连接到github,并进行push + pull projects in github by git commands。 0.1) 对ssh免密码登录有不熟悉的童鞋,please visit http://blog.youkuaiyun.com/pacosonswjtu/article/details/48055931 【1】配置github 用户原创 2015-09-29 20:03:03 · 2454 阅读 · 0 评论