You can subscribe to this list here.
2010 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(11) |
Oct
(13) |
Nov
(1) |
Dec
(3) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2011 |
Jan
|
Feb
(20) |
Mar
(24) |
Apr
(1) |
May
|
Jun
(2) |
Jul
(2) |
Aug
(1) |
Sep
(2) |
Oct
|
Nov
|
Dec
(15) |
2012 |
Jan
(25) |
Feb
(10) |
Mar
(12) |
Apr
|
May
(3) |
Jun
|
Jul
(2) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(5) |
2013 |
Jan
(3) |
Feb
|
Mar
|
Apr
(3) |
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
2014 |
Jan
|
Feb
(3) |
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2015 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
From: SourceForge.net <no...@so...> - 2011-12-19 18:36:53
|
Bugs item #3461130, was opened at 2011-12-16 12:58 Message generated for change (Comment added) made by dt25954 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1475673&aid=3461130&group_id=353214 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: core Group: None Status: Open Resolution: Fixed Priority: 5 Private: No Submitted By: Doug Beatty (dt25954) Assigned to: Baka Project (bakaproject) Summary: Issues running with msysgit Initial Comment: I am trying to run gitslave version 2.0.1 with git version 1.7.7.1msysgit.0. I ran into two different errors. First when running gits prepare, I received "There is no -K option ("less --help" for help)". To resolve this, I commented out line 885. Second when attempting to clone a super project, I received "Bad line 1 in /C/WorkAreas/SCM3/.gitslave". To resolve this, I changed the regular expression on line 376. As this same expression is used on line 1096, I changed it as well. I have attached my new gits file. ---------------------------------------------------------------------- >Comment By: Doug Beatty (dt25954) Date: 2011-12-19 10:36 Message: The bad line issue appears to be resolved. Thanks. ---------------------------------------------------------------------- Comment By: Doug Beatty (dt25954) Date: 2011-12-19 10:30 Message: I am still getting the '-K ' error. I added this line at 1274: die $^O if 1; and it outputs: msys at /h/bin/gits line 1274. So I change line 1272 to: if ($^O ne "MSWin32" && $^O ne "cygwin" && $^O ne "msys") and it seems to work. ---------------------------------------------------------------------- Comment By: Doug Beatty (dt25954) Date: 2011-12-19 07:07 Message: You asked a couple of questions regarding my Perl installation. Command: perl -v Prints: This is perl, v5.8.8 built for msys Command: perl -e 'print "$^O\n";' Prints: msys ---------------------------------------------------------------------- Comment By: Doug Beatty (dt25954) Date: 2011-12-17 05:46 Message: Thank you for your quick response. I will test and respond more fully Monday and answer your questions. But to answer one now, I am fairly new to Git. I don't know what the conventions are to install something like gitslave and I didn't see any instructions for installation in the documentation. So I just copied the 'gits' file into a folder in my path and it seems to be working so far (other than the two issues reported here). If you would like me to try an automated install, I would be happy to test it for you if you provide instructions. ---------------------------------------------------------------------- Comment By: Baka Project (bakaproject) Date: 2011-12-16 15:19 Message: A commit was pushed to the gitslave repository which should fix both of your problems. Please report back with the success or failure. Additionally, I'd still like to know if you were able to install gitslave using `make install` or whether you did it by hand. Thanks, ---------------------------------------------------------------------- Comment By: Baka Project (bakaproject) Date: 2011-12-16 13:49 Message: Thank you for your bug report. The problem turns out to be the line ending in the .gitslave file. It is not handling the DOS line ending carriage return properly. Git must be in DOS line ending mode and adjusted the file for our convenience. What version of perl are you using? `perl -v` might say. What does the following command print? `perl -e 'print "$^O\n";'` Did you have to install gitslave by hand? ---------------------------------------------------------------------- Comment By: Doug Beatty (dt25954) Date: 2011-12-16 13:01 Message: I uploaded the .gitslave file so you can see that it was properly formatted and should not have generated an error. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1475673&aid=3461130&group_id=353214 |
From: SourceForge.net <no...@so...> - 2011-12-19 18:30:33
|
Bugs item #3461130, was opened at 2011-12-16 12:58 Message generated for change (Comment added) made by dt25954 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1475673&aid=3461130&group_id=353214 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: core Group: None Status: Open Resolution: Fixed Priority: 5 Private: No Submitted By: Doug Beatty (dt25954) Assigned to: Baka Project (bakaproject) Summary: Issues running with msysgit Initial Comment: I am trying to run gitslave version 2.0.1 with git version 1.7.7.1msysgit.0. I ran into two different errors. First when running gits prepare, I received "There is no -K option ("less --help" for help)". To resolve this, I commented out line 885. Second when attempting to clone a super project, I received "Bad line 1 in /C/WorkAreas/SCM3/.gitslave". To resolve this, I changed the regular expression on line 376. As this same expression is used on line 1096, I changed it as well. I have attached my new gits file. ---------------------------------------------------------------------- >Comment By: Doug Beatty (dt25954) Date: 2011-12-19 10:30 Message: I am still getting the '-K ' error. I added this line at 1274: die $^O if 1; and it outputs: msys at /h/bin/gits line 1274. So I change line 1272 to: if ($^O ne "MSWin32" && $^O ne "cygwin" && $^O ne "msys") and it seems to work. ---------------------------------------------------------------------- Comment By: Doug Beatty (dt25954) Date: 2011-12-19 07:07 Message: You asked a couple of questions regarding my Perl installation. Command: perl -v Prints: This is perl, v5.8.8 built for msys Command: perl -e 'print "$^O\n";' Prints: msys ---------------------------------------------------------------------- Comment By: Doug Beatty (dt25954) Date: 2011-12-17 05:46 Message: Thank you for your quick response. I will test and respond more fully Monday and answer your questions. But to answer one now, I am fairly new to Git. I don't know what the conventions are to install something like gitslave and I didn't see any instructions for installation in the documentation. So I just copied the 'gits' file into a folder in my path and it seems to be working so far (other than the two issues reported here). If you would like me to try an automated install, I would be happy to test it for you if you provide instructions. ---------------------------------------------------------------------- Comment By: Baka Project (bakaproject) Date: 2011-12-16 15:19 Message: A commit was pushed to the gitslave repository which should fix both of your problems. Please report back with the success or failure. Additionally, I'd still like to know if you were able to install gitslave using `make install` or whether you did it by hand. Thanks, ---------------------------------------------------------------------- Comment By: Baka Project (bakaproject) Date: 2011-12-16 13:49 Message: Thank you for your bug report. The problem turns out to be the line ending in the .gitslave file. It is not handling the DOS line ending carriage return properly. Git must be in DOS line ending mode and adjusted the file for our convenience. What version of perl are you using? `perl -v` might say. What does the following command print? `perl -e 'print "$^O\n";'` Did you have to install gitslave by hand? ---------------------------------------------------------------------- Comment By: Doug Beatty (dt25954) Date: 2011-12-16 13:01 Message: I uploaded the .gitslave file so you can see that it was properly formatted and should not have generated an error. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1475673&aid=3461130&group_id=353214 |
From: SourceForge.net <no...@so...> - 2011-12-19 15:07:53
|
Bugs item #3461130, was opened at 2011-12-16 12:58 Message generated for change (Comment added) made by dt25954 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1475673&aid=3461130&group_id=353214 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: core Group: None Status: Open Resolution: Fixed Priority: 5 Private: No Submitted By: Doug Beatty (dt25954) Assigned to: Baka Project (bakaproject) Summary: Issues running with msysgit Initial Comment: I am trying to run gitslave version 2.0.1 with git version 1.7.7.1msysgit.0. I ran into two different errors. First when running gits prepare, I received "There is no -K option ("less --help" for help)". To resolve this, I commented out line 885. Second when attempting to clone a super project, I received "Bad line 1 in /C/WorkAreas/SCM3/.gitslave". To resolve this, I changed the regular expression on line 376. As this same expression is used on line 1096, I changed it as well. I have attached my new gits file. ---------------------------------------------------------------------- >Comment By: Doug Beatty (dt25954) Date: 2011-12-19 07:07 Message: You asked a couple of questions regarding my Perl installation. Command: perl -v Prints: This is perl, v5.8.8 built for msys Command: perl -e 'print "$^O\n";' Prints: msys ---------------------------------------------------------------------- Comment By: Doug Beatty (dt25954) Date: 2011-12-17 05:46 Message: Thank you for your quick response. I will test and respond more fully Monday and answer your questions. But to answer one now, I am fairly new to Git. I don't know what the conventions are to install something like gitslave and I didn't see any instructions for installation in the documentation. So I just copied the 'gits' file into a folder in my path and it seems to be working so far (other than the two issues reported here). If you would like me to try an automated install, I would be happy to test it for you if you provide instructions. ---------------------------------------------------------------------- Comment By: Baka Project (bakaproject) Date: 2011-12-16 15:19 Message: A commit was pushed to the gitslave repository which should fix both of your problems. Please report back with the success or failure. Additionally, I'd still like to know if you were able to install gitslave using `make install` or whether you did it by hand. Thanks, ---------------------------------------------------------------------- Comment By: Baka Project (bakaproject) Date: 2011-12-16 13:49 Message: Thank you for your bug report. The problem turns out to be the line ending in the .gitslave file. It is not handling the DOS line ending carriage return properly. Git must be in DOS line ending mode and adjusted the file for our convenience. What version of perl are you using? `perl -v` might say. What does the following command print? `perl -e 'print "$^O\n";'` Did you have to install gitslave by hand? ---------------------------------------------------------------------- Comment By: Doug Beatty (dt25954) Date: 2011-12-16 13:01 Message: I uploaded the .gitslave file so you can see that it was properly formatted and should not have generated an error. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1475673&aid=3461130&group_id=353214 |
From: SourceForge.net <no...@so...> - 2011-12-17 13:46:15
|
Bugs item #3461130, was opened at 2011-12-16 12:58 Message generated for change (Comment added) made by dt25954 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1475673&aid=3461130&group_id=353214 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: core Group: None Status: Closed Resolution: Fixed Priority: 5 Private: No Submitted By: Doug Beatty (dt25954) Assigned to: Baka Project (bakaproject) Summary: Issues running with msysgit Initial Comment: I am trying to run gitslave version 2.0.1 with git version 1.7.7.1msysgit.0. I ran into two different errors. First when running gits prepare, I received "There is no -K option ("less --help" for help)". To resolve this, I commented out line 885. Second when attempting to clone a super project, I received "Bad line 1 in /C/WorkAreas/SCM3/.gitslave". To resolve this, I changed the regular expression on line 376. As this same expression is used on line 1096, I changed it as well. I have attached my new gits file. ---------------------------------------------------------------------- Comment By: Doug Beatty (dt25954) Date: 2011-12-17 05:46 Message: Thank you for your quick response. I will test and respond more fully Monday and answer your questions. But to answer one now, I am fairly new to Git. I don't know what the conventions are to install something like gitslave and I didn't see any instructions for installation in the documentation. So I just copied the 'gits' file into a folder in my path and it seems to be working so far (other than the two issues reported here). If you would like me to try an automated install, I would be happy to test it for you if you provide instructions. ---------------------------------------------------------------------- Comment By: Baka Project (bakaproject) Date: 2011-12-16 15:19 Message: A commit was pushed to the gitslave repository which should fix both of your problems. Please report back with the success or failure. Additionally, I'd still like to know if you were able to install gitslave using `make install` or whether you did it by hand. Thanks, ---------------------------------------------------------------------- Comment By: Baka Project (bakaproject) Date: 2011-12-16 13:49 Message: Thank you for your bug report. The problem turns out to be the line ending in the .gitslave file. It is not handling the DOS line ending carriage return properly. Git must be in DOS line ending mode and adjusted the file for our convenience. What version of perl are you using? `perl -v` might say. What does the following command print? `perl -e 'print "$^O\n";'` Did you have to install gitslave by hand? ---------------------------------------------------------------------- Comment By: Doug Beatty (dt25954) Date: 2011-12-16 13:01 Message: I uploaded the .gitslave file so you can see that it was properly formatted and should not have generated an error. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1475673&aid=3461130&group_id=353214 |
From: SourceForge.net <no...@so...> - 2011-12-16 23:20:03
|
Bugs item #3461130, was opened at 2011-12-16 12:58 Message generated for change (Settings changed) made by bakaproject You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1475673&aid=3461130&group_id=353214 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: core Group: None Status: Closed >Resolution: Fixed Priority: 5 Private: No Submitted By: Doug Beatty (dt25954) >Assigned to: Baka Project (bakaproject) Summary: Issues running with msysgit Initial Comment: I am trying to run gitslave version 2.0.1 with git version 1.7.7.1msysgit.0. I ran into two different errors. First when running gits prepare, I received "There is no -K option ("less --help" for help)". To resolve this, I commented out line 885. Second when attempting to clone a super project, I received "Bad line 1 in /C/WorkAreas/SCM3/.gitslave". To resolve this, I changed the regular expression on line 376. As this same expression is used on line 1096, I changed it as well. I have attached my new gits file. ---------------------------------------------------------------------- Comment By: Baka Project (bakaproject) Date: 2011-12-16 15:19 Message: A commit was pushed to the gitslave repository which should fix both of your problems. Please report back with the success or failure. Additionally, I'd still like to know if you were able to install gitslave using `make install` or whether you did it by hand. Thanks, ---------------------------------------------------------------------- Comment By: Baka Project (bakaproject) Date: 2011-12-16 13:49 Message: Thank you for your bug report. The problem turns out to be the line ending in the .gitslave file. It is not handling the DOS line ending carriage return properly. Git must be in DOS line ending mode and adjusted the file for our convenience. What version of perl are you using? `perl -v` might say. What does the following command print? `perl -e 'print "$^O\n";'` Did you have to install gitslave by hand? ---------------------------------------------------------------------- Comment By: Doug Beatty (dt25954) Date: 2011-12-16 13:01 Message: I uploaded the .gitslave file so you can see that it was properly formatted and should not have generated an error. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1475673&aid=3461130&group_id=353214 |
From: SourceForge.net <no...@so...> - 2011-12-16 23:19:37
|
Bugs item #3461130, was opened at 2011-12-16 12:58 Message generated for change (Comment added) made by bakaproject You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1475673&aid=3461130&group_id=353214 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: core Group: None >Status: Closed Resolution: None Priority: 5 Private: No Submitted By: Doug Beatty (dt25954) Assigned to: Nobody/Anonymous (nobody) Summary: Issues running with msysgit Initial Comment: I am trying to run gitslave version 2.0.1 with git version 1.7.7.1msysgit.0. I ran into two different errors. First when running gits prepare, I received "There is no -K option ("less --help" for help)". To resolve this, I commented out line 885. Second when attempting to clone a super project, I received "Bad line 1 in /C/WorkAreas/SCM3/.gitslave". To resolve this, I changed the regular expression on line 376. As this same expression is used on line 1096, I changed it as well. I have attached my new gits file. ---------------------------------------------------------------------- >Comment By: Baka Project (bakaproject) Date: 2011-12-16 15:19 Message: A commit was pushed to the gitslave repository which should fix both of your problems. Please report back with the success or failure. Additionally, I'd still like to know if you were able to install gitslave using `make install` or whether you did it by hand. Thanks, ---------------------------------------------------------------------- Comment By: Baka Project (bakaproject) Date: 2011-12-16 13:49 Message: Thank you for your bug report. The problem turns out to be the line ending in the .gitslave file. It is not handling the DOS line ending carriage return properly. Git must be in DOS line ending mode and adjusted the file for our convenience. What version of perl are you using? `perl -v` might say. What does the following command print? `perl -e 'print "$^O\n";'` Did you have to install gitslave by hand? ---------------------------------------------------------------------- Comment By: Doug Beatty (dt25954) Date: 2011-12-16 13:01 Message: I uploaded the .gitslave file so you can see that it was properly formatted and should not have generated an error. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1475673&aid=3461130&group_id=353214 |
From: Baka P. <bak...@us...> - 2011-12-16 23:15:25
|
Updated from old rev c5d65a4 (commit) http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=shortlog;h=145befe - Log -------------- commit 145befe http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=commitdiff;h=145befe * Windows port issues (DOS line ending, less -K) commit a580140 http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=commitdiff;h=a580140 * Ensure that less always uses -FX when called from gits commit feaa26c http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=commitdiff;h=feaa26c * Add inappropriate output substitution nit -------------------- Summary of changes: gitslave/BugsTodo | 18 ++++++++++++------ gitslave/ReleaseNotes | 24 +++++++++++++++++++++++- gitslave/gits | 21 ++++++++++++++++++--- 3 files changed, 53 insertions(+), 10 deletions(-) -- gitslave |
From: SourceForge.net <no...@so...> - 2011-12-16 21:49:54
|
Bugs item #3461130, was opened at 2011-12-16 12:58 Message generated for change (Comment added) made by bakaproject You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1475673&aid=3461130&group_id=353214 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: core Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Doug Beatty (dt25954) Assigned to: Nobody/Anonymous (nobody) Summary: Issues running with msysgit Initial Comment: I am trying to run gitslave version 2.0.1 with git version 1.7.7.1msysgit.0. I ran into two different errors. First when running gits prepare, I received "There is no -K option ("less --help" for help)". To resolve this, I commented out line 885. Second when attempting to clone a super project, I received "Bad line 1 in /C/WorkAreas/SCM3/.gitslave". To resolve this, I changed the regular expression on line 376. As this same expression is used on line 1096, I changed it as well. I have attached my new gits file. ---------------------------------------------------------------------- >Comment By: Baka Project (bakaproject) Date: 2011-12-16 13:49 Message: Thank you for your bug report. The problem turns out to be the line ending in the .gitslave file. It is not handling the DOS line ending carriage return properly. Git must be in DOS line ending mode and adjusted the file for our convenience. What version of perl are you using? `perl -v` might say. What does the following command print? `perl -e 'print "$^O\n";'` Did you have to install gitslave by hand? ---------------------------------------------------------------------- Comment By: Doug Beatty (dt25954) Date: 2011-12-16 13:01 Message: I uploaded the .gitslave file so you can see that it was properly formatted and should not have generated an error. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1475673&aid=3461130&group_id=353214 |
From: SourceForge.net <no...@so...> - 2011-12-16 21:01:37
|
Bugs item #3461130, was opened at 2011-12-16 12:58 Message generated for change (Comment added) made by dt25954 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1475673&aid=3461130&group_id=353214 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: core Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Doug Beatty (dt25954) Assigned to: Nobody/Anonymous (nobody) Summary: Issues running with msysgit Initial Comment: I am trying to run gitslave version 2.0.1 with git version 1.7.7.1msysgit.0. I ran into two different errors. First when running gits prepare, I received "There is no -K option ("less --help" for help)". To resolve this, I commented out line 885. Second when attempting to clone a super project, I received "Bad line 1 in /C/WorkAreas/SCM3/.gitslave". To resolve this, I changed the regular expression on line 376. As this same expression is used on line 1096, I changed it as well. I have attached my new gits file. ---------------------------------------------------------------------- >Comment By: Doug Beatty (dt25954) Date: 2011-12-16 13:01 Message: I uploaded the .gitslave file so you can see that it was properly formatted and should not have generated an error. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1475673&aid=3461130&group_id=353214 |
From: SourceForge.net <no...@so...> - 2011-12-16 20:58:27
|
Bugs item #3461130, was opened at 2011-12-16 12:58 Message generated for change (Tracker Item Submitted) made by dt25954 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1475673&aid=3461130&group_id=353214 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: core Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Doug Beatty (dt25954) Assigned to: Nobody/Anonymous (nobody) Summary: Issues running with msysgit Initial Comment: I am trying to run gitslave version 2.0.1 with git version 1.7.7.1msysgit.0. I ran into two different errors. First when running gits prepare, I received "There is no -K option ("less --help" for help)". To resolve this, I commented out line 885. Second when attempting to clone a super project, I received "Bad line 1 in /C/WorkAreas/SCM3/.gitslave". To resolve this, I changed the regular expression on line 376. As this same expression is used on line 1096, I changed it as well. I have attached my new gits file. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1475673&aid=3461130&group_id=353214 |
From: Alexander D. <du...@us...> - 2011-09-26 14:45:22
|
Updated from old rev 6556909 (commit) http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=shortlog;h=c5d65a4 - Log -------------- commit c5d65a4 http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=commitdiff;h=c5d65a4 * gits chown to handle ownership resets commit fb90e19 http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=commitdiff;h=fb90e19 * improve rmtree error handling -------------------- Summary of changes: gitslave/BugsTodo | 23 +++++++++++++++++++++++ gitslave/gits | 10 +++++++++- 2 files changed, 32 insertions(+), 1 deletions(-) -- gitslave |
From: Baka P. <bak...@us...> - 2011-09-21 18:33:24
|
Updated from old rev 9d652e8 (commit) http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=shortlog;h=6556909 - Log -------------- commit 6556909 http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=commitdiff;h=6556909 * Support %%upstream%% and %%upstream_base%% substitutions -------------------- Summary of changes: gitslave/BugsTodo | 14 ++++++++++++++ gitslave/README | 13 +++++++++++-- gitslave/gits | 29 +++++++++++++++++++++++++++-- 3 files changed, 52 insertions(+), 4 deletions(-) -- gitslave |
From: Baka P. <bak...@us...> - 2011-08-09 15:02:44
|
Updated from old rev d7da54b (commit) http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=shortlog;h=9d652e8 - Log -------------- commit 9d652e8 http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=commitdiff;h=9d652e8 * Add --rawout option commit eb9b4cf http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=commitdiff;h=eb9b4cf * Autoattach idea -------------------- Summary of changes: gitslave/BugsTodo | 10 ++++++++++ gitslave/README | 9 +++++++++ gitslave/gits | 26 +++++++++++++++++++++++--- 3 files changed, 42 insertions(+), 3 deletions(-) -- gitslave |
From: <pro...@ba...> - 2011-07-05 18:37:51
|
In message <CAE1pOi3LmCRB4TCmn5L5qHjO6Lnn9Z=yKY...@ma...>, Hilco Wijbenga writes: How hard is it to turn an umbrella project with content and quite a few submodules (only 1 level deep) into a gitslave repo? What would be the best approach? This is split into three parts. Generating the gitslave commands, removing the submodule, and then executing the gitslave commands. Generating the prototype gitslave commands. ---------------------------------------------------------------------- egrep "(path|url)" < .gitmodules | tr '\n' ' ' | sed -r s/"\s*(path|url) = "/" "/g | sed s/"\.git"/".git\n"/g | awk 'NF>1 { print "gits attach " $2 " " $1 }' ---------------------------------------------------------------------- Removal of submodules ---------------------------------------------------------------------- grep submodule .git/config | sed 's/.*"\(.*\)".*/git config --remove-section submodule.\1/' | sh egrep path .gitmodules | sed 's/.*= //' > .tmpgitsubdirs git rm .gitmodules xargs git rm --cached < .tmpgitsubdirs git commit -a -m "Converting from submodules to gitslave" xargs rm -rf .tmpgitsubdirs < .tmpgitsubdirs ---------------------------------------------------------------------- Executing the gitslave commands ---------------------------------------------------------------------- gits prepare gits attach … ---------------------------------------------------------------------- While you don't technically need to remove the submodule stuff, gitslave and git-submodule (mostly git-submodule) will fight each other if both are in use. Additionally, the gits attach commands generated in the first command are examples. We strongly recommend that you use relative URLs (eg. ../libfoo instead of ssh://git.example.com/src/git/libfoo if the superproject is found in ssh://git.example.com/src/git/super) when possible. submodules usually use absolute URLs. These commands have only been lightly tested, on the directory structure produced by the submodule tutorial, so please understand what each command (and more importantly, command generation scripts) do before execution. Please let us know how this goes and any corrections you had to make. We may turn this into a FAQ. -Seth Robertson |
From: Hilco W. <hil...@gm...> - 2011-07-05 17:13:24
|
Hi guys, How hard is it to turn an umbrella project with content and quite a few submodules (only 1 level deep) into a gitslave repo? What would be the best approach? Cheers, Hilco |
From: SourceForge.net <no...@so...> - 2011-06-02 04:17:43
|
Bugs item #3310400, was opened at 2011-06-02 01:12 Message generated for change (Comment added) made by bakaproject You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1475673&aid=3310400&group_id=353214 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Martin L Resnick (mlresnick) Assigned to: Nobody/Anonymous (nobody) Summary: gits commit message shared Initial Comment: when using "gits commit" without the -m flag a new editor window opens for each repository. Is there a way instead to make a commit message once and then the rest of the repositories use it ? ---------------------------------------------------------------------- >Comment By: Baka Project (bakaproject) Date: 2011-06-02 04:17 Message: Well, I see where you are coming from, but I'm not sure it represents the principal of least surprise. What happens if you want to provide different commit messages? I think it would be better to take the first message and then provide it back using -F and then provide the -e flag to specifically ask it to be edited. In other words, to use the first message as a defaultpossibly also appending git status as comments. I will certainly accept patches for this. It may get developed as well. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1475673&aid=3310400&group_id=353214 |
From: SourceForge.net <no...@so...> - 2011-06-02 01:12:19
|
Bugs item #3310400, was opened at 2011-06-01 21:12 Message generated for change (Tracker Item Submitted) made by mlresnick You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1475673&aid=3310400&group_id=353214 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Martin L Resnick (mlresnick) Assigned to: Nobody/Anonymous (nobody) Summary: gits commit message shared Initial Comment: when using "gits commit" without the -m flag a new editor window opens for each repository. Is there a way instead to make a commit message once and then the rest of the repositories use it ? ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1475673&aid=3310400&group_id=353214 |
From: Baka P. <bak...@us...> - 2011-04-01 07:19:14
|
Updated from old rev 8c25c63 (commit) http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=shortlog;h=d7da54b - Log -------------- commit d7da54b http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=commitdiff;h=d7da54b * Complain about release's inability to release the non-existent -------------------- Summary of changes: gitslave/BugsTodo | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) -- gitslave |
From: Alexander D. <du...@us...> - 2011-03-31 14:54:15
|
Updated from old rev 751a64a (commit) http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=shortlog;h=8c25c63 - Log -------------- commit 8c25c63 http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=commitdiff;h=8c25c63 * note on rm -rf in detach/release commit 82df5a7 http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=commitdiff;h=82df5a7 * slave list for detach/release implies --no-master commit 1693c0e http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=commitdiff;h=1693c0e * don't remove master if --all --no-master! ouch! commit 5ed7416 http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=commitdiff;h=5ed7416 * unify/clarify --reference[checkout] documentation avoid duplicate paragraphs with identical construction except for [checkout] add motivation and warning about shared repositories commit e401b63 http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=commitdiff;h=e401b63 * out-of-date (fast-forward) is not bad use same logic for current-branch (status) and other branch (checkout) parsing of /can be fast-forwarded/ -------------------- Summary of changes: gitslave/BugsTodo | 25 ++++++++++------- gitslave/README | 62 ++++++++++++++++++++++++----------------- gitslave/gits | 82 ++++++++++++++++++++++++++++++++------------------------ gitslave/prep_gitscheck | 7 ++--- 4 files changed, 101 insertions(+), 75 deletions(-) -- gitslave |
From: Baka P. <bak...@us...> - 2011-03-29 19:15:34
|
Updated from old rev ec78d9a (commit) http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=shortlog;h=751a64a - Log -------------- commit 751a64a http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=commitdiff;h=751a64a * Various --reference bugfixes Also removed debugging -------------------- Summary of changes: gitslave/gits | 15 +++++---------- 1 files changed, 5 insertions(+), 10 deletions(-) -- gitslave |
From: Baka P. <bak...@us...> - 2011-03-29 18:45:12
|
Updated from old rev d21c581 (commit) http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=shortlog;h=ec78d9a - Log -------------- commit ec78d9a http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=commitdiff;h=ec78d9a * Add --reference support on attach, populate, and clone commit cec1951 http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=commitdiff;h=cec1951 * Piwik tracking -------------------- Summary of changes: gitslave/README | 34 ++++++++++++++- gitslave/ReleaseNotes | 15 +++++++ gitslave/gits | 107 ++++++++++++++++++++++++++++++++++++++-------- gitslave/prep_gitscheck | 6 ++- gitslave/web/index.html | 14 ++++++ gitslave/web/tutorial-basic.html | 14 ++++++ 6 files changed, 167 insertions(+), 23 deletions(-) -- gitslave |
From: Baka P. <bak...@us...> - 2011-03-26 17:49:34
|
Updated from old rev fe4f7f2 (commit) http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=shortlog;h=d21c581 - Log -------------- commit d21c581 http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=commitdiff;h=d21c581 * Update release notes and add detach/release bugs commit b43df6b http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=commitdiff;h=b43df6b * Fix "add `gits release`" gits detach was also changed during this commit, but stopped working. Get it working again and add a `make check` test for that functionality commit 697ba92 http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=commitdiff;h=697ba92 * Fix 'recover from initial clone failure' make check failed. The current slave branch cannot be successfully determined prior to checking out the slave branch. -------------------- Summary of changes: gitslave/BugsTodo | 22 ++++++++++++++++++++++ gitslave/ReleaseNotes | 2 +- gitslave/gits | 21 ++++++++++++++++----- gitslave/prep_gitscheck | 6 ++++++ 4 files changed, 45 insertions(+), 6 deletions(-) -- gitslave |
From: Baka P. <bak...@us...> - 2011-03-26 16:36:22
|
Updated from old rev 3723639 (commit) http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=shortlog;h=fe4f7f2 - Log -------------- commit fe4f7f2 http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=commitdiff;h=fe4f7f2 * Update release notes for Alex commits of note -------------------- Summary of changes: gitslave/ReleaseNotes | 27 +++++++++++++++++++++++++++ 1 files changed, 27 insertions(+), 0 deletions(-) -- gitslave |
From: Alexander D. <du...@us...> - 2011-03-26 16:11:57
|
Updated from old rev f6f6e13 (commit) http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=shortlog;h=3723639 - Log -------------- commit 3723639 http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=commitdiff;h=3723639 * recover from initial clone failure If there is a network connectivity problem, the initial clone of a slave may create a git repository and set up the remote, but not actually fetch the data. Handle the case of an empty git repository in the slave by trying (again) to fetch it. commit d3b6b70 http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=commitdiff;h=d3b6b70 * map clearer than grep with side-effects commit bfcea7c http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=commitdiff;h=bfcea7c * allow --withifpresent as arg to populate commit 8f8a8ca http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=commitdiff;h=8f8a8ca * add `gits release` in honor of the `cvs release` command - having much the same purpose (you can also say `gits depopulate` if you like long words) This checks for any repository state that has not been copied elsewhere, including rebase in progress, unresolved conflicts, untracked files (that are not ignored), uncommitted changes (whether staged or not), commits that have not been pushed to the origin remote, stashes, and local branches that have not been merged into a tracking branch. It also checks that there is a tracking branch. Only if these checks pass are the repositories removed. New gits option --just-ifpresent only processes conditional slaves. `gits detach` also performs the same checks on the slave as gits release. commit c0b70a7 http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=commitdiff;h=c0b70a7 * handle fetch/merge args to pulls more accurately commit d6e5285 http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=commitdiff;h=d6e5285 * documentation/usage-message/warning tweaks use UPPERCASE rather than <brackets> consistently for arguments use standard terminology: meta-module -> superproject sub-module -> slave module -> repository (%MODULE% -> %REPO%) other clarifications `gits detach` fails with more accurate error if GITSLAVE is multipath -------------------- Summary of changes: gitslave/README | 252 +++++++++++------ gitslave/gits | 839 +++++++++++++++++++++++++++++++++++++++++++++++--------- gitslave/prep_gitscheck | 4 + 3 files changed, 882 insertions(+), 213 deletions(-) -- gitslave |
From: Baka P. <bak...@us...> - 2011-03-26 14:50:17
|
Updated from old rev 3386be7 (commit) http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=shortlog;h=f6f6e13 - Log -------------- commit f6f6e13 http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=commitdiff;h=f6f6e13 * Release 2.0.1 -------------------- Summary of changes: gitslave/ReleaseNotes | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) -- gitslave |