码云上的git如何使用

作者: 在你左右2018 | 来源:发表于2016-12-12 17:34 被阅读2952次

    配置ssh key

    你可以按如下命令来生成sshkey

    ssh-keygen -t rsa -C "xxxxx@xxxxx.com"# Creates a new ssh key using the provided email

    # Generating public/private rsa key pair...

    查看你的public key,并把他添加到 Git @ OSChttp://git.oschina.net/keys

    cat ~/.ssh/id_rsa.pub

    # ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC6eNtGpNGwstc....

    添加后,在终端(Terminal)中输入

    ssh -T git@git.oschina.net

    若返回

    Welcome to Git@OSC, yourname!

    则证明添加成功。


    Clone 和 Push

    Clone 项目

    git clone http://git.oschina.net/xxxxxx/xxxxxx.git

    创建特性分支

    git checkout -b $feature_name

    写代码,提交变更

    git commit -am "My feature is ready"

    将你的提交推送到 Git@OSC

    git push origin $feature_name


    码云帮助文档



    git 常用必备命令

    git init //初始化新项目

    git status 查看所有文件状态

    git add 将文件添加到暂存区

    git commit //提交暂存区文件

    git log 查看提交历史

    git config --global user.name "yourname" //配置用户姓名

    git pull

    git push

    相关文章

      网友评论

        本文标题:码云上的git如何使用

        本文链接:https://www.haomeiwen.com/subject/zvnmmttx.html