World: r3wp
[!REBOL3 Source Control] How to manage build process
older newer | first last |
Carl 29-Oct-2010 [419x3] | A question: for new releases, should I push to my carls repo, the rebol sandbox, or r3-hostkit ? |
Asked another way: how does r3-hostkit get updated? | |
Do we always pull into it? | |
Andreas 29-Oct-2010 [422x5] | I would push into rebol/r3-hostkit for now. |
(Which does not yet exist.) | |
The rebol/sandbox is just if you want to play around a bit with Github. | |
We'll probably just delete that afterwards. | |
Of course you can also create a repo under your carls user for playing around. | |
Carl 29-Oct-2010 [427] | Another question: do you normally access github from git? Do you ever use the web interface? |
Andreas 29-Oct-2010 [428] | You hardly need to use the web interface. |
Carl 29-Oct-2010 [429x2] | Good to know. |
Is there a command for renaming files? | |
Andreas 29-Oct-2010 [431] | git-mv |
Carl 29-Oct-2010 [432] | If I remove a file from my repo, then I push . does it remove it from the target repo? |
Andreas 29-Oct-2010 [433x2] | If you remove with git-rm, then create a commit with git-commit, then git-push: yes. |
If you remove with something else, you'll still need to create a commit for that remove. | |
Carl 29-Oct-2010 [435x2] | What is the reason to use git-push vs git push ? |
(and other cmds) | |
Andreas 29-Oct-2010 [437x3] | That's just a convetion I use to refer to commands. |
When I say git-push, you actually writ e `git push`. | |
But if you want to know more: man git-push | |
Carl 29-Oct-2010 [440] | Well, I must say... I am impressed so far. There are a lot of "nice touches" |
Andreas 29-Oct-2010 [441x2] | I'm sure you'll be even more impressed when you dig deeper. |
It is so _extremely_ simple at it's core :) | |
Carl 29-Oct-2010 [443x3] | Yes, and I want to make sure that the R3 Git Guide that we'll post shows that this is very simple to do. |
I think many people have gone to use SVN and will resist a bit using something new. | |
Of course, in the worst cases, they can just use the zip/gz file downloads for read access. | |
Andreas 29-Oct-2010 [446x3] | Or they can even use svn for read access :) |
Try it: svn co https://svn.github.com/rebolsource/r3-hostkit.git | |
On the other hand, I've never met anyone who went back after giving a modern DVCS (which means mostly Git and Hg) a serious try. | |
Carl 29-Oct-2010 [449] | So, to mark an official release, like A110, is it only necessary to commit with that message, or do we need to make a tag as well? |
Andreas 29-Oct-2010 [450x3] | I would suggest adding a tag as well. |
A tag is a minimal object in git, just pointing to a commit. | |
They are cheap! :) | |
Carl 29-Oct-2010 [453] | I'm running out of questions. (A good thing.) |
Andreas 29-Oct-2010 [454x2] | Incorporating changes from others will raise some questions. |
But I think we should not get ahead of ourselves. | |
Carl 29-Oct-2010 [456x5] | Yes, we can deal with that as it happens. |
Ok, so here's the rough plan... | |
Tomorrow, if all goes well, I'll finish A110. I'll check that both the win32 and posix dirs are correct and build. As part of the process, I'm going to text process the files to set them to LF only. Then, I'll push it to the rebol/r3-host-kit repo (to be created.) | |
Do we want r3-hostkit or r3-host-kit ? | |
Most of the time I write it host-kit. | |
Andreas 29-Oct-2010 [461x3] | I would prefer r3-hostkit and call the thing "hostkit". |
Those in-between dashes have a tendency of getting dropped or replaced by spaces or worse. So it's basically an attempt to preempt this :) | |
But whatever you prefer. r3-host-kit is fine as well. | |
Carl 29-Oct-2010 [464] | The problem is that host-kit appears in many places spelled like that already. It may lead to errors to remove the - at this time. |
Andreas 29-Oct-2010 [465] | Yes, agreed. |
Carl 29-Oct-2010 [466] | I'm going to let the RMA team know what's going on... so hopefully they can sync up on things quickly. |
Andreas 29-Oct-2010 [467] | I would also suggest pushing into rebol/sandbox first, so that we can look over it together. |
Carl 29-Oct-2010 [468] | Will do. |
older newer | first last |