我有一个git存储库,它完全存在于我的PC内部。我想将其远程克隆到github.com上。怎么办?
谢谢。
答案 0 :(得分:3)
添加一个 new repository in GitHub,然后在您要上传到 GitHub 的计算机文件夹中运行以下命令(根据您的情况更改 my_username
和 my_project
):
git init
git add .
git commit -m "initial commit"
git remote add origin https://github.com/my_username/my_project.git
git push --set-upstream origin master
如果这是您第一次在本地机器上设置 git,那么您需要添加您的用户名和电子邮件:
git config --global user.name "Bob"
git config --global user.email bob@example.com
以后进行更改时,您只需执行以下操作:
git add .
git commit -m "description of what I changed"
git push
我还经常使用 git status
来查看已更改或准备提交的内容。
答案 1 :(得分:3)
答案 2 :(得分:2)
看起来非常基本的问题仍然遵循以下步骤
第1步:您需要先创建git hub存储库
第2步:然后复制git hub存储库的URL
步骤4:然后为git hub仓库(Sub LHEQP()
Dim lastRow As Long
with ActiveSheet
LastRow = .Cells(.Rows.Count, 1).End(xlUp).Row
with .Range("A1:P" & LastRow)
.AutoFilter Field:=14, Criteria1:="=PB*"
if not cbool(application.subtotal(103, .columns(14).offset(1,0))) then
'zero visible data in filtered column N
msgbox "bad filter"
exit sub
end if
end with
end with
End Sub
)添加远程
第3步:然后克隆存储库(Redme文件将被克隆)(git remote add origin "copied repo URL"
)
步骤5:然后添加文件(git clone "copied repo URL"
)
第6步:git add * or git add . or git add file name
第7步:推送(git commit -m "your message"
)
登录git-hub并检查您的存储库
答案 3 :(得分:1)
我上传现有本地存储库的方式