我分叉了一个存储库并提交了一些文件并创建了一个对原始存储库的拉取请求。
是否可以在文件中进行其他更改以仅推送到原始存储库的本地副本?因此提交不会出现在原始存储库中。
我看到git push origin master
,我在原始存储库中看到了提交。
谢谢
答案 0 :(得分:1)
是否可以在文件中进行其他更改以仅推送到原始存储库的本地副本?
如果您还没有遥控器,则应添加多个遥控器。
git push <remote_name> master
现在您可以将分支推送到任何远程
git remote --vv
git remote set-url --add --push origin <url1>
git remote set-url --add --push origin <url2>
如果你想将同一个牧场推到多个遥控器上,你可以这样做:
.git/config
您的[remote "origin"]
url = git://original/repo.git
fetch = +refs/heads/*:refs/remotes/origin/*
pushurl = git://original/repo.git
pushurl = git://another/repo.git
应如下:
Dim db As Database, myRecordset As Recordset
Set db = CurrentDb()
sqlString = "SELECT myfield FROM myTable"
Set myRecordset = db.OpenRecordset(sqlString, dbOpenDynaset, dbSeeChanges)
myRecordset.MoveFirst
Do While myRecordset.EOF = False
myRecordset.Edit
myRecordset.Fields("myfield ").Value = newValue
myRecordset.Update
myRecordset.MoveNext
Loop