A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 马马耶夫岗 中级黑马   /  2016-4-19 22:15  /  233 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

1. 创建git资源库
        git init --bare 库名称
       
2. 在用户文件夹下把资源clone下来
        git clone <仓库目录> /g/software/repository/git/itheima <用户目录> .
        注意:clone时候用户目录必须为空

3. 创建一个文件,纳入到版本控制中。
        git add <文件名>
        第一次执行会出警告:warning: LF will be replaced by CRLF in readme.txt.
                                                The file will have its original line endings in your working directory.
        警告处理:需要配置用户信息
                                        git config user.name = "zhangsan"
                                        git config user.email = "itheima@gmail.com"
                                       
4. 提交到本地版本库里。
        git commit <文件名>
       
5. 推送到远程共享版本库中
        git push origin master
       
6. 切换用户,拉取最新的文件
        git pull

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马