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: Baka P. <bak...@us...> - 2012-01-30 19:40:59
|
Updated from old rev c0d86a3 (commit) http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=shortlog;h=f53a7d8 - Log -------------- commit f53a7d8 http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=commitdiff;h=f53a7d8 * Support DESTDIR without trailing slash. This prevents users from using relative paths in prefix, but that doesn't seem to be too limiting. -------------------- Summary of changes: gitslave/Makefile | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) -- gitslave |
From: SourceForge.net <no...@so...> - 2012-01-30 19:31:14
|
Bugs item #3481722, was opened at 2012-01-30 10:52 Message generated for change (Settings changed) made by dupuy You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1475673&aid=3481722&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: Jehan Bing (nahor) >Assigned to: Alexander Dupuy (dupuy) Summary: Remove unecessary DESTDIR Initial Comment: "DESTDIR" and "prefix" should be one variable. People are more likely to want to install gitslave in "/home/john/bin" than "/home/john/usr/local/bin". Moreover, as-is, gitslave doesn't install on Windows because the current default path is "//usr/local" because of the '/' between DESTDIR and prefix and that prefix is an absolute path. This default path references the shared directory "local" on the machine "usr". And on Unix, if one were to use a relative path in prefix, the installation will be done relative to the root folder ("/../[...]") instead of the current folder. New usage after applying the path: make install # for the default location, i.e. /usr/local/... make install prefix=[path] # for a non default location. ---------------------------------------------------------------------- Comment By: Alexander Dupuy (dupuy) Date: 2012-01-30 11:26 Message: The initial double slash (//usr/local/bin/gits) is due to a / between $(DESTDIR) and $(prefix) in the install target. I just pushed a commit to the git repository that fixes this. Given the DESTDIR convention used by Gentoo and the fact that the lead developer's own systems run Gentoo, this is probably as fixed as this bug will get. You should be able to ignore the presence of DESTDIR now, though. ---------------------------------------------------------------------- Comment By: Jehan Bing (nahor) Date: 2012-01-30 11:21 Message: Nothing prevents prefix (or DESTDIR) to be "/var/tmp/portage/ebuild/gitslave/usr/local", unless Gentoo (or others) expects both variables to be present of course. I believe for Gentoo it would be something like "make prefix="${D}/usr/local". But well, bike shed and stuff :p. This was really just an attempt to fix the extra "/", which is not a manipulation error but because you have an explicit '/' between DESTDIR and prefix. DESTDIR / prefix => "" / "/usr/local" With DESTDIR=/, you would get 3 slashes: "/" / "/usr/local" ---------------------------------------------------------------------- Comment By: Baka Project (bakaproject) Date: 2012-01-30 11:02 Message: Thank you for your comment. However, we will not be eliminating one of DESTDIR/prefix. Some operating systems, like Gentoo, use methods of installation where they do indeed install into somnething like /var/tmp/portage/ebuild/gitslave/usr/bin/gits but after installation the binary appears in /usr/bin/gits I'm not sure how you got the // problem though. By default the DESTDIR variable is unset/empty, so it would expand to only one slash. Only if you manually specified DESTDIR=/ would you get two slashes. Solution: don't do that. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1475673&aid=3481722&group_id=353214 |
From: SourceForge.net <no...@so...> - 2012-01-30 19:26:18
|
Bugs item #3481722, was opened at 2012-01-30 10:52 Message generated for change (Comment added) made by dupuy You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1475673&aid=3481722&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: Jehan Bing (nahor) Assigned to: Nobody/Anonymous (nobody) Summary: Remove unecessary DESTDIR Initial Comment: "DESTDIR" and "prefix" should be one variable. People are more likely to want to install gitslave in "/home/john/bin" than "/home/john/usr/local/bin". Moreover, as-is, gitslave doesn't install on Windows because the current default path is "//usr/local" because of the '/' between DESTDIR and prefix and that prefix is an absolute path. This default path references the shared directory "local" on the machine "usr". And on Unix, if one were to use a relative path in prefix, the installation will be done relative to the root folder ("/../[...]") instead of the current folder. New usage after applying the path: make install # for the default location, i.e. /usr/local/... make install prefix=[path] # for a non default location. ---------------------------------------------------------------------- >Comment By: Alexander Dupuy (dupuy) Date: 2012-01-30 11:26 Message: The initial double slash (//usr/local/bin/gits) is due to a / between $(DESTDIR) and $(prefix) in the install target. I just pushed a commit to the git repository that fixes this. Given the DESTDIR convention used by Gentoo and the fact that the lead developer's own systems run Gentoo, this is probably as fixed as this bug will get. You should be able to ignore the presence of DESTDIR now, though. ---------------------------------------------------------------------- Comment By: Jehan Bing (nahor) Date: 2012-01-30 11:21 Message: Nothing prevents prefix (or DESTDIR) to be "/var/tmp/portage/ebuild/gitslave/usr/local", unless Gentoo (or others) expects both variables to be present of course. I believe for Gentoo it would be something like "make prefix="${D}/usr/local". But well, bike shed and stuff :p. This was really just an attempt to fix the extra "/", which is not a manipulation error but because you have an explicit '/' between DESTDIR and prefix. DESTDIR / prefix => "" / "/usr/local" With DESTDIR=/, you would get 3 slashes: "/" / "/usr/local" ---------------------------------------------------------------------- Comment By: Baka Project (bakaproject) Date: 2012-01-30 11:02 Message: Thank you for your comment. However, we will not be eliminating one of DESTDIR/prefix. Some operating systems, like Gentoo, use methods of installation where they do indeed install into somnething like /var/tmp/portage/ebuild/gitslave/usr/bin/gits but after installation the binary appears in /usr/bin/gits I'm not sure how you got the // problem though. By default the DESTDIR variable is unset/empty, so it would expand to only one slash. Only if you manually specified DESTDIR=/ would you get two slashes. Solution: don't do that. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1475673&aid=3481722&group_id=353214 |
From: Alexander D. <du...@us...> - 2012-01-30 19:21:38
|
Updated from old rev 11c2b2d (commit) http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=shortlog;h=c0d86a3 - Log -------------- commit c0d86a3 http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=commitdiff;h=c0d86a3 * fix for double initial slash (bug3481722) eliminate / between $(DESTDIR) and ultimate installation target dir -------------------- Summary of changes: gitslave/Makefile | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) -- gitslave |
From: SourceForge.net <no...@so...> - 2012-01-30 19:21:21
|
Bugs item #3481722, was opened at 2012-01-30 10:52 Message generated for change (Comment added) made by nahor You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1475673&aid=3481722&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: Closed Resolution: None Priority: 5 Private: No Submitted By: Jehan Bing (nahor) Assigned to: Nobody/Anonymous (nobody) Summary: Remove unecessary DESTDIR Initial Comment: "DESTDIR" and "prefix" should be one variable. People are more likely to want to install gitslave in "/home/john/bin" than "/home/john/usr/local/bin". Moreover, as-is, gitslave doesn't install on Windows because the current default path is "//usr/local" because of the '/' between DESTDIR and prefix and that prefix is an absolute path. This default path references the shared directory "local" on the machine "usr". And on Unix, if one were to use a relative path in prefix, the installation will be done relative to the root folder ("/../[...]") instead of the current folder. New usage after applying the path: make install # for the default location, i.e. /usr/local/... make install prefix=[path] # for a non default location. ---------------------------------------------------------------------- Comment By: Jehan Bing (nahor) Date: 2012-01-30 11:21 Message: Nothing prevents prefix (or DESTDIR) to be "/var/tmp/portage/ebuild/gitslave/usr/local", unless Gentoo (or others) expects both variables to be present of course. I believe for Gentoo it would be something like "make prefix="${D}/usr/local". But well, bike shed and stuff :p. This was really just an attempt to fix the extra "/", which is not a manipulation error but because you have an explicit '/' between DESTDIR and prefix. DESTDIR / prefix => "" / "/usr/local" With DESTDIR=/, you would get 3 slashes: "/" / "/usr/local" ---------------------------------------------------------------------- Comment By: Baka Project (bakaproject) Date: 2012-01-30 11:02 Message: Thank you for your comment. However, we will not be eliminating one of DESTDIR/prefix. Some operating systems, like Gentoo, use methods of installation where they do indeed install into somnething like /var/tmp/portage/ebuild/gitslave/usr/bin/gits but after installation the binary appears in /usr/bin/gits I'm not sure how you got the // problem though. By default the DESTDIR variable is unset/empty, so it would expand to only one slash. Only if you manually specified DESTDIR=/ would you get two slashes. Solution: don't do that. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1475673&aid=3481722&group_id=353214 |
From: SourceForge.net <no...@so...> - 2012-01-30 19:02:54
|
Bugs item #3481722, was opened at 2012-01-30 10:52 Message generated for change (Comment added) made by bakaproject You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1475673&aid=3481722&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: Closed Resolution: None Priority: 5 Private: No Submitted By: Jehan Bing (nahor) Assigned to: Nobody/Anonymous (nobody) Summary: Remove unecessary DESTDIR Initial Comment: "DESTDIR" and "prefix" should be one variable. People are more likely to want to install gitslave in "/home/john/bin" than "/home/john/usr/local/bin". Moreover, as-is, gitslave doesn't install on Windows because the current default path is "//usr/local" because of the '/' between DESTDIR and prefix and that prefix is an absolute path. This default path references the shared directory "local" on the machine "usr". And on Unix, if one were to use a relative path in prefix, the installation will be done relative to the root folder ("/../[...]") instead of the current folder. New usage after applying the path: make install # for the default location, i.e. /usr/local/... make install prefix=[path] # for a non default location. ---------------------------------------------------------------------- >Comment By: Baka Project (bakaproject) Date: 2012-01-30 11:02 Message: Thank you for your comment. However, we will not be eliminating one of DESTDIR/prefix. Some operating systems, like Gentoo, use methods of installation where they do indeed install into somnething like /var/tmp/portage/ebuild/gitslave/usr/bin/gits but after installation the binary appears in /usr/bin/gits I'm not sure how you got the // problem though. By default the DESTDIR variable is unset/empty, so it would expand to only one slash. Only if you manually specified DESTDIR=/ would you get two slashes. Solution: don't do that. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1475673&aid=3481722&group_id=353214 |
From: SourceForge.net <no...@so...> - 2012-01-30 18:52:34
|
Bugs item #3481722, was opened at 2012-01-30 10:52 Message generated for change (Tracker Item Submitted) made by nahor You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1475673&aid=3481722&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: Jehan Bing (nahor) Assigned to: Nobody/Anonymous (nobody) Summary: Remove unecessary DESTDIR Initial Comment: "DESTDIR" and "prefix" should be one variable. People are more likely to want to install gitslave in "/home/john/bin" than "/home/john/usr/local/bin". Moreover, as-is, gitslave doesn't install on Windows because the current default path is "//usr/local" because of the '/' between DESTDIR and prefix and that prefix is an absolute path. This default path references the shared directory "local" on the machine "usr". And on Unix, if one were to use a relative path in prefix, the installation will be done relative to the root folder ("/../[...]") instead of the current folder. New usage after applying the path: make install # for the default location, i.e. /usr/local/... make install prefix=[path] # for a non default location. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1475673&aid=3481722&group_id=353214 |
From: SourceForge.net <no...@so...> - 2012-01-30 18:37:30
|
Bugs item #3480711, was opened at 2012-01-27 18:19 Message generated for change (Comment added) made by bakaproject You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1475673&aid=3480711&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: Jehan Bing (nahor) Assigned to: Nobody/Anonymous (nobody) Summary: Use --separate-git-dir= when cloning slaves Initial Comment: It would be nice if gitslave could use --separate-git-dir= when cloning a slave to put the slave's .git folder in the superproject's .git, similar to what git submodule does in recent versions of git. This would make commands like "tree" or a recursive grep simpler to use (less stuff to exclude). ---------------------------------------------------------------------- >Comment By: Baka Project (bakaproject) Date: 2012-01-30 10:37 Message: I had that thought as well. However, given the more…dynamic…expected development pattern of subprojects with gitslave, we would probably want to save the non-tracked files as well as the git repo. I suppose we could do an automatic `git stash save --all "gitslave"` to stuff those away (at the possible massive cost of repository inflation), but I was thinking of actually rotating the entire redundant subproject to appear under .git/slaves (or where-ever). ---------------------------------------------------------------------- Comment By: Jehan Bing (nahor) Date: 2012-01-30 10:28 Message: A variation of your comment "protection of the slave git repositories from errant rm -rf due to git clean or gits release." in the BugsTodo file is that if the slaves' .git directories are in the master's, a slave won't need to be re-cloned when switching between a branch that doesn't use it and the one that does. ---------------------------------------------------------------------- Comment By: Baka Project (bakaproject) Date: 2012-01-27 18:33 Message: An interesting idea. We will take it under consideration for the next time we are bored. You can of course use `gits grep` or --exclude to help avoid the problem, but of course that is a limited solution, or try to bribe us, or submit patches. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1475673&aid=3480711&group_id=353214 |
From: SourceForge.net <no...@so...> - 2012-01-30 18:28:43
|
Bugs item #3480711, was opened at 2012-01-27 18:19 Message generated for change (Comment added) made by nahor You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1475673&aid=3480711&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: Jehan Bing (nahor) Assigned to: Nobody/Anonymous (nobody) Summary: Use --separate-git-dir= when cloning slaves Initial Comment: It would be nice if gitslave could use --separate-git-dir= when cloning a slave to put the slave's .git folder in the superproject's .git, similar to what git submodule does in recent versions of git. This would make commands like "tree" or a recursive grep simpler to use (less stuff to exclude). ---------------------------------------------------------------------- >Comment By: Jehan Bing (nahor) Date: 2012-01-30 10:28 Message: A variation of your comment "protection of the slave git repositories from errant rm -rf due to git clean or gits release." in the BugsTodo file is that if the slaves' .git directories are in the master's, a slave won't need to be re-cloned when switching between a branch that doesn't use it and the one that does. ---------------------------------------------------------------------- Comment By: Baka Project (bakaproject) Date: 2012-01-27 18:33 Message: An interesting idea. We will take it under consideration for the next time we are bored. You can of course use `gits grep` or --exclude to help avoid the problem, but of course that is a limited solution, or try to bribe us, or submit patches. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1475673&aid=3480711&group_id=353214 |
From: Alexander D. <du...@us...> - 2012-01-28 14:09:17
|
Updated from old rev 3a001ec (commit) http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=shortlog;h=11c2b2d - Log -------------- commit 11c2b2d http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=commitdiff;h=11c2b2d * add new tracker items to BugsTodo also, use short URLs for tracker items (these are manually created at https://sourceforge.net/apps/sfurl/gitslave/list.php) commit 7b1da05 http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=commitdiff;h=7b1da05 * add 64x64 version of icon for ohloh.net & web page commit a6335cb http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=commitdiff;h=a6335cb * minor tweaks to icon alignment & transparency -------------------- Summary of changes: gitslave/BugsTodo | 50 ++++++++++++++++++++++++++++++++++++++++++++++- gitslave/web/Makefile | 2 +- gitslave/web/gitslaveicon.png | Bin 3542 -> 0 bytes gitslave/web/gitslaveicon.xcf | Bin 44394 -> 44333 bytes gitslave/web/gitslaveicon48.png | Bin 0 -> 3568 bytes gitslave/web/gitslaveicon64.png | Bin 0 -> 5161 bytes gitslave/web/index.html | 2 +- 7 files changed, 50 insertions(+), 4 deletions(-) delete mode 100644 web/gitslaveicon.png create mode 100644 web/gitslaveicon48.png create mode 100644 web/gitslaveicon64.png -- gitslave |
From: SourceForge.net <no...@so...> - 2012-01-28 02:33:49
|
Bugs item #3480711, was opened at 2012-01-27 18:19 Message generated for change (Comment added) made by bakaproject You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1475673&aid=3480711&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: Jehan Bing (nahor) Assigned to: Nobody/Anonymous (nobody) Summary: Use --separate-git-dir= when cloning slaves Initial Comment: It would be nice if gitslave could use --separate-git-dir= when cloning a slave to put the slave's .git folder in the superproject's .git, similar to what git submodule does in recent versions of git. This would make commands like "tree" or a recursive grep simpler to use (less stuff to exclude). ---------------------------------------------------------------------- >Comment By: Baka Project (bakaproject) Date: 2012-01-27 18:33 Message: An interesting idea. We will take it under consideration for the next time we are bored. You can of course use `gits grep` or --exclude to help avoid the problem, but of course that is a limited solution, or try to bribe us, or submit patches. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1475673&aid=3480711&group_id=353214 |
From: SourceForge.net <no...@so...> - 2012-01-28 02:28:27
|
Bugs item #3480712, was opened at 2012-01-27 18:28 Message generated for change (Tracker Item Submitted) made by nahor You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1475673&aid=3480712&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: Jehan Bing (nahor) Assigned to: Nobody/Anonymous (nobody) Summary: Use gitmodule config settings Initial Comment: Can gitslave use gitmodule settings instead of its own? For instance, .gitslave has the same content as .gitmodules, just in a different format. This would allow different developers to use submodule or gitslave at their convenience. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1475673&aid=3480712&group_id=353214 |
From: SourceForge.net <no...@so...> - 2012-01-28 02:19:33
|
Bugs item #3480711, was opened at 2012-01-27 18:19 Message generated for change (Tracker Item Submitted) made by nahor You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1475673&aid=3480711&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: Jehan Bing (nahor) Assigned to: Nobody/Anonymous (nobody) Summary: Use --separate-git-dir= when cloning slaves Initial Comment: It would be nice if gitslave could use --separate-git-dir= when cloning a slave to put the slave's .git folder in the superproject's .git, similar to what git submodule does in recent versions of git. This would make commands like "tree" or a recursive grep simpler to use (less stuff to exclude). ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1475673&aid=3480711&group_id=353214 |
From: Baka P. <bak...@us...> - 2012-01-26 14:46:21
|
Updated from old rev a92556e (commit) http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=shortlog;h=3a001ec - Log -------------- commit 3a001ec http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=commitdiff;h=3a001ec * Make icon look right on more browsers -------------------- Summary of changes: gitslave/web/Makefile | 4 ++-- gitslave/web/index.html | 6 +++--- gitslave/web/tutorial.css | 1 + 3 files changed, 6 insertions(+), 5 deletions(-) -- gitslave |
From: Baka P. <bak...@us...> - 2012-01-26 14:24:29
|
Updated from old rev d678f99 (commit) http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=shortlog;h=a92556e - Log -------------- commit a92556e http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=commitdiff;h=a92556e * Add logo/screenshot to home page, make logo transparent commit 513214a http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=commitdiff;h=513214a * Merge remote-tracking branch 'origin/master' -------------------- Summary of changes: gitslave/web/gitslaveicon.png | Bin 2857 -> 3542 bytes gitslave/web/gitslaveicon.xcf | Bin 43967 -> 44394 bytes gitslave/web/index.html | 3 +++ 3 files changed, 3 insertions(+), 0 deletions(-) -- gitslave |
From: Alexander D. <du...@us...> - 2012-01-26 08:47:02
|
Updated from old rev e9795fd (commit) http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=shortlog;h=d678f99 - Log -------------- commit d678f99 http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=commitdiff;h=d678f99 * add tracker URLs to BugsTodo commit c0d06ee http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=commitdiff;h=c0d06ee * gitslave logo in GIMP xcf at 144Ã144 and PNG at 48Ã48 for sourceforge commit ee5a644 http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=commitdiff;h=ee5a644 * screenshot of gits pull yes, it is a command-line app, but a screenshot is still useful to give you a flavor of what it looks like commit 3175fe2 http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=commitdiff;h=3175fe2 * revised sourceforge blurb text commit cd96fa1 http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=commitdiff;h=cd96fa1 * pulled blurb from sourceforge page commit 2a70352 http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=commitdiff;h=2a70352 * Require modern git for make release Git 1.6 lacks git status --porcelain, prints nothing to stdout pipe to wc, but that doesn't mean there are no uncommitted changes; check for and reject git that doesn't handle this option. Also, rewrap multi-line backslashed make commands for 80-column text commit 0fc40b1 http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=commitdiff;h=0fc40b1 * fix inappropriate %REPO% substitution there are still some cases where this may occur, but they should be limited to cases where the repository name appears on its own, surrounded by whitespace or quotes or a leading / commit 7028b05 http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=commitdiff;h=7028b05 * remove todo item addressed by new attach --adminonly -------------------- Summary of changes: gitslave/BugsTodo | 23 ++++------------------- gitslave/Makefile | 47 ++++++++++++++++++++++++++++------------------- gitslave/gits | 10 ++++++---- gitslave/prep_gitscheck | 3 +++ gitslave/web/gitslave.png | Bin 0 -> 33257 bytes gitslave/web/gitslaveicon.png | Bin 0 -> 2857 bytes gitslave/web/gitslaveicon.xcf | Bin 0 -> 43967 bytes gitslave/web/sf-blurb.txt | 7 +++++++ 8 files changed, 48 insertions(+), 42 deletions(-) create mode 100644 web/gitslave.png create mode 100644 web/gitslaveicon.png create mode 100644 web/gitslaveicon.xcf create mode 100644 web/sf-blurb.txt -- gitslave |
From: Baka P. <bak...@us...> - 2012-01-26 00:20:37
|
Updated from old rev f1a4e64 (commit) http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=shortlog;h=e9795fd - Log -------------- commit e9795fd http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=commitdiff;h=e9795fd * gitslave release 2.0.2 final(?) release notes commit 48dff08 http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=commitdiff;h=48dff08 * Support --adminonly even when directory already exists -------------------- Summary of changes: gitslave/README | 6 +++++- gitslave/ReleaseNotes | 13 ++++++++++++- gitslave/gits | 2 +- gitslave/prep_gitscheck | 3 ++- 4 files changed, 20 insertions(+), 4 deletions(-) -- gitslave |
From: Baka P. <bak...@us...> - 2012-01-26 00:02:30
|
Updated from old rev 13c9784 (commit) http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=shortlog;h=f1a4e64 - Log -------------- commit f1a4e64 http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=commitdiff;h=f1a4e64 * Teach gits attach --adminonly to avoid cloning, only doing the administrative bookkeeping commit 84094be http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=commitdiff;h=84094be * Support more recent versions of git with an updated git-clone output -------------------- Summary of changes: gitslave/gits | 36 +++++++++++++++++++++++++++--------- gitslave/prep_gitscheck | 2 +- 2 files changed, 28 insertions(+), 10 deletions(-) -- gitslave |
From: Alexander D. <du...@us...> - 2012-01-11 02:27:12
|
Updated from old rev 0fb91e9 (commit) http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=shortlog;h=13c9784 - Log -------------- commit 13c9784 http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=commitdiff;h=13c9784 * add gloss of license new LICENSE.README contains the elided sections 3 and 13 (so you can see what has been removed) along with a brief explication of what that means. -------------------- Summary of changes: gitslave/LICENSE.README | 69 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 69 insertions(+), 0 deletions(-) create mode 100644 LICENSE.README -- gitslave |
From: SourceForge.net <no...@so...> - 2011-12-19 21:00:36
|
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: Doug Beatty (dt25954) Date: 2011-12-19 11:10 Message: I have pulled your latest change and both issues appear to be resolved. Thanks, for resolving this so quickly. ---------------------------------------------------------------------- Comment By: Baka Project (bakaproject) Date: 2011-12-19 10:54 Message: Thanks for the information. I have updated the gitslave git repository to support the msys version of perl. ---------------------------------------------------------------------- Comment By: Doug Beatty (dt25954) Date: 2011-12-19 10:40 Message: To answer what I believe was your final question, I attempted to install via 'make install'. I did not have a make installed on my PC so installed http://www.gnu.org/software/make/. I added the path to my bash profile and ran 'make install' and received the following error: $ make install pod2man < gits > gits.1 "C:/Program Files/Git/bin/sh.exe": pod2man: command not found make: *** [gits.1] Error 127 ---------------------------------------------------------------------- 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 19:10:18
|
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 11:10 Message: I have pulled your latest change and both issues appear to be resolved. Thanks, for resolving this so quickly. ---------------------------------------------------------------------- Comment By: Baka Project (bakaproject) Date: 2011-12-19 10:54 Message: Thanks for the information. I have updated the gitslave git repository to support the msys version of perl. ---------------------------------------------------------------------- Comment By: Doug Beatty (dt25954) Date: 2011-12-19 10:40 Message: To answer what I believe was your final question, I attempted to install via 'make install'. I did not have a make installed on my PC so installed http://www.gnu.org/software/make/. I added the path to my bash profile and ran 'make install' and received the following error: $ make install pod2man < gits > gits.1 "C:/Program Files/Git/bin/sh.exe": pod2man: command not found make: *** [gits.1] Error 127 ---------------------------------------------------------------------- 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:54:11
|
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: 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-19 10:54 Message: Thanks for the information. I have updated the gitslave git repository to support the msys version of perl. ---------------------------------------------------------------------- Comment By: Doug Beatty (dt25954) Date: 2011-12-19 10:40 Message: To answer what I believe was your final question, I attempted to install via 'make install'. I did not have a make installed on my PC so installed http://www.gnu.org/software/make/. I added the path to my bash profile and ran 'make install' and received the following error: $ make install pod2man < gits > gits.1 "C:/Program Files/Git/bin/sh.exe": pod2man: command not found make: *** [gits.1] Error 127 ---------------------------------------------------------------------- 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: Baka P. <bak...@us...> - 2011-12-19 18:53:28
|
Updated from old rev 145befe (commit) http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=shortlog;h=78c3487 - Log -------------- commit 78c3487 http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=commitdiff;h=78c3487 * Document more about windows operations (and inoperations) commit 138808a http://gitslave.git.sourceforge.net/git/gitweb.cgi?p=gitslave/gitslave;a=commitdiff;h=138808a * msysgit uses its own operating system name for perl on win32. Handle it. -------------------- Summary of changes: gitslave/BugsTodo | 6 +++--- gitslave/ReleaseNotes | 3 ++- gitslave/gits | 2 +- 3 files changed, 6 insertions(+), 5 deletions(-) -- gitslave |
From: SourceForge.net <no...@so...> - 2011-12-19 18:40:49
|
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:40 Message: To answer what I believe was your final question, I attempted to install via 'make install'. I did not have a make installed on my PC so installed http://www.gnu.org/software/make/. I added the path to my bash profile and ran 'make install' and received the following error: $ make install pod2man < gits > gits.1 "C:/Program Files/Git/bin/sh.exe": pod2man: command not found make: *** [gits.1] Error 127 ---------------------------------------------------------------------- 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 |