GitHub入门使用指南

    xiaoxiao2022-07-03  181

    Github及GitHub Desktop基本入门使用指南

    GitHub常见操作指南1. 删除Github中的一个项目或仓库 GitHub Desktop使用操作指南1. Github Desktop退出当前登录用户的详细操作:2. Github Desktop windows上传本地项目文件的方法: GitHub Desktop 错误及解决方法

    GitHub常见操作指南

    1. 删除Github中的一个项目或仓库

    登陆Github账号→点击头像处,选择下拉栏中的”your profile”→点击选择需要删除的项目,进入项目,找到“Settings”,进入查看设置→在设置栏篇下拉至网页末端,点击“Delete this Repository”删除→彻底删除之前,再次输入项目名称进行确认。 点击"Commit to master"只是让Github客户端记录这次进行的改动,相当于一次游戏存档,在将来的某一天如果想重玩这个存档,可以点击上面的圆圈“读取存档”,让项目恢复到这次记录的状态。 详细步骤参照原文链接:https://jingyan.baidu.com/article/7f41ecec37f402593c095c6c.html

    GitHub Desktop使用操作指南

    Github桌面版使用方式(How to Use Github [Desktop Version])的原文链接:https://blog.csdn.net/qq_32690999/article/details/77504033

    1. Github Desktop退出当前登录用户的详细操作:

    打开githubDesktop→点击file→点击options→点击sign out

    2. Github Desktop windows上传本地项目文件的方法:

    打开githubDesktop软件界面→点击file→点击Add local repository(即:添加本地文件)→在弹出的设置界面“local path”中,选择欲上传的本地项目的路径→点击“Add repository”,如此本地项目文件就会被导入到软件的操作界面中去→在左下角summary中输入项目概述(下方的描述区域,可以忽略不写)→点击“Commit to master”进行提交→点击“Publish repository”完成上传。 感谢大神的博文:http://www.pc0359.cn/article/jiaocheng/88635.html

    GitHub Desktop 错误及解决方法

    commit to master 时,出现如下错误:

    Commit failed - exit code 128 received, with output: '*** Please tell me who you are. Run git config --global user.email "you@example.com" git config --global user.name "Your Name" to set your account's default identity. Omit --global to set the identity only in this repository. fatal: unable to auto-detect email address (got 'Administrator@w310-002.(none)')'

    解决方法: 在准备上传项目的根目录下有一个隐藏文件夹–.git,里面有一个config文件,利用记事本打开,在文件的最后添加下面的代码: xxx换成自己的名字和邮箱地址,然后保存文件,再去提交OK啦!

    [user] name = xxx email = xxx

    问题完美解决,感谢大神帮忙,附上原文链接: https://blog.csdn.net/shensiback/article/details/80256233

    最新回复(0)