Ibidem, thank you very much !Ibidem wrote:I'm assuming you haven't created any branches or commited anything.Karl Godt wrote:Yeah, Mick , I should do .01micko wrote:woof-CE should be ready to build from now. There were some teething problems migrating the repository from fossil to git, I committed the fixes to the testing branch pending a sanity check then will merge with master. Karl, you might be interested in merging the changes into your repository.
But am a little unsure how to do this :
I would try with whatever git command to pull the main (master ?) repo into my local repo on the current partition , that likely would overwrite my files (?) and after that pull in my fork into my local repo on the current partition, that would overwrite the files overwritten by the merge of the main repo ..
Suggestions
If all goes well, you should be able to merge "upstream" into "local".Code: Select all
git diff #check if anything has been changed #if you did change something, save it. git checkout -b local git commit -a -m "My changes" git checkout master git checkout -b upstream #create and check out a new branch, named "upstream" git pull git://github.com/... master #download and merge
Ask for details if that's not clear enough.
For clarify : I think I clicked on the "fork" button in the firefox webbrowser,
could somehow create a github account, and did
Code: Select all
/usr/git/bin/git clone https://github.com/puppylinux-woof-CE/woof-CE
/usr/git/bin/git clone https://github.com/KarlGodt/woof-CE
and
KarlGodt/woof-CE is located @ /root/WOOF.REPOS.D/KarlGodtWOOF.GIT
on the current partition
and I am only working in my own directory :
# pwd
/root/WOOF.REPOS.D/KarlGodtWOOF.GIT/woof-CE
Ibidem, I am committing to my Fork on github already like this last commit :
Code: Select all
git commit -am "pup_event_backend_modprobe AND pupBOOTfunctions :
> Cleaned up my code from commit e8efbe335ac67eb4db469ac867e3934ea3fa43c7."
[master 82c4417] pup_event_backend_modprobe AND pupBOOTfunctions : Cleaned up my code from commit e8efbe335ac67eb4db469ac867e3934ea3fa43c7.
2 files changed, 2 insertions(+), 84 deletions(-)
[20:58 0 /bin/bash 18156 46 woof-CE ]
[puppypc]# git push origin
but finally it uploads :
Code: Select all
Counting objects: 17, done.
Delta compression using up to 2 threads.
Compressing objects: 100% (9/9), done.
Writing objects: 100% (9/9), 797 bytes | 0 bytes/s, done.
Total 9 (delta 8), reused 0 (delta 0)
To https://github.com/KarlGodt/woof-CE
e8efbe3..82c4417 master -> master
[20:58 0 /bin/bash 18156 47 woof-CE ]