I Use This!
Very High Activity

News

Analyzed about 8 hours ago. based on code collected about 8 hours ago.
Posted about 17 years ago by Junio C Hamano
As promised, 1.6.1-rc1 is found at the usual places, and from here on we will be in bugfixes-only mode until 1.6.1 final. I also think there probably are a few more patches on 'next' (e.g. the first patch on the gp/gitweb-feature topic, which is a ... [More] pure bugfix) that haven't merged to 'master' but should. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html [Less]
Posted about 17 years ago by Abhijit Bhopatkar
hi ppl, teamGit is a functional git gui written in qt, its ultimate aim is to add functionality on top of git targeted at small closely nit teams. I have tagged the repo with v0.0.8!!! You can now get the .deb from ubuntu intrepid ppa deb ... [More] http://ppa.launchpad.net/bain-devslashzero/ubuntu intrepid main package name is teamgit. The main project website is http://www.devslashzero.com/teamgit There are many small changes and feature adds you can take a look at repo here http://gitorious.org/projects/teamgit/repos/mainline The major feature add however is addition on **Advanced** menu. This menu is constructed on the fly parsing output of 'git help --all' Then when you click on a menu item it issues git help , parses the manpage and presents its options in a guified form. It even display nice tooltips describing the option. This is just a first stage of the planned feature. Ultimately this advanced menu will be just a 'Admin' feature. People will be able to save the selected options and parameters as 'Receipies' and can cook a nice receipes package particular to their needs/organisations. The feature is not really complete yet, but you can issue simple commands using it. Ther _are_bugs_ but i couldn't wait to showcase this nifty feature. Check out the screenshot http://www.devslashzero.com/images/teamgitscreenshots/screenshot-teamgit22nov.png Abhijit Bhopaktar -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html [Less]
Posted about 17 years ago by Giuseppe Bilotta
Hello all, I just finished giving a decent form to a tool I've been longing to get my hands on for quite some time: an RCS fast exporter http://git.or.cz/gitwiki/InterfacesFrontendsAndTools#rcs-fast-export It's written in Ruby, and doesn't require ... [More] any external tools or libraries, parsing the RCS files directly (hopefully correctly). It converts RCS symbols to lightweight tags, it supports your typical --authors-file, it can even (lightweight) tag every commit with the corresponding RCS revision, on request. It follows branches, too, giving them a name like 1.3.2.x. You *can* process multiple files at once, but the script will not try to do anything smart so the results might or might not be what you expect. TODOs include * not needing an authors file for users that had the good sense of configuring their user.name and .email properly and whose username is the only one appearing in the RCS history * being smarter with memory management because we already exports blobs on the fly so we should discard them unless they are needed to rebuild other RCS revisions * integration with Zit, the Git-based single file content tracker, so that you can say for example 'zit import somefile' where somefile is RCS-tracked * submission for git's repo (to contrib) * submission for fast-export's repo http://repo.or.cz/w/fast-export.git * test with fast-import for other SCMs -- Giuseppe "Oblomov" Bilotta -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html [Less]
Posted about 17 years ago by Felipe Contreras
Hi, codeswarm.rb is a rewrite of Michael Ogawa's code_swarm in ruby using cairo. For an example see: http://www.youtube.com/watch?v=PxjLbj8oT1k For the original code: http://code.google.com/p/codeswarm The format of the events xml file is ... [More] compatible with code_swarm's one, and the physics engine is basically the same. The code is less than 500 lines of code, so it should be fairly hackable. http://github.com/felipec/codeswarm.rb Enjoy :) -- Felipe Contreras -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html [Less]
Posted about 17 years ago by Miklos Vajna
Posted about 17 years ago by Junio C Hamano
The latest maintenance release GIT 1.6.0.4 is available at the usual places: http://www.kernel.org/pub/software/scm/git/ git-1.6.0.4.tar.{gz,bz2} (source tarball) git-htmldocs-1.6.0.4.tar.{gz,bz2} (preformatted docs) ... [More] git-manpages-1.6.0.4.tar.{gz,bz2} (preformatted docs) The RPM binary packages for a few architectures are also provided as courtesy. RPMS/$arch/git-*-1.6.0.4-1.fc9.$arch.rpm (RPM) Fixes since v1.6.0.3 -------------------- * 'git add -p' said "No changes" when only binary files were changed. * 'git archive' did not work correctly in bare repositories. * 'git checkout -t -b newbranch' when you are on detached HEAD was broken. * when we refuse to detect renames because there are too many new or deleted files, 'git diff' did not say how many there are. * 'git push --mirror' tried and failed to push the stash; there is no point in sending it to begin with. * 'git push' did not update the remote tracking reference if the corresponding ref on the remote end happened to be already up to date. * 'git pull $there $branch:$current_branch' did not work when you were on a branch yet to be born. * when giving up resolving a conflicted merge, 'git reset --hard' failed to remove new paths from the working tree. * 'git send-email' had a small fd leak while scanning directory. * 'git status' incorrectly reported a submodule directory as an untracked directory. * 'git svn' used deprecated 'git-foo' form of subcommand invocaition. * 'git update-ref -d' to remove a reference did not honor --no-deref option. * Plugged small memleaks here and there. * Also contains many documentation updates. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html [Less]
Posted about 17 years ago by Abhijit Bhopatkar
Hi people, I have just tagged the teamgit repo as v0.0.4 The improvements over v0.0.3 include rudimentary blame support, sign-off support, apply-mailbox support, send patch using desktop email client service support (makes mailto: request to ... [More] desktop service). One minor but "i find it really usefull" features is that if you select a commit in log and quit, it will print the commit hash to stdout. So now you can embed it in git commands or scirpts to fire up a visual commit selection, like git-show `teamigt ./` will show the selected commit etc. This is really helpful and (correct me if i am wrong) i couldn't find other gui that does this, may be will be a good addition to gitk? Links: http://www.devslashzero.com/teamgit http://www.devslashzero.com/teamgit/download Abhijit, Short log follows --- Abhijit Bhopatkar (36): Added .desktop file and icons to install target Added support files for running checkinstall Don't depend on qt 4.4.1 we can do with just 4.4 Changed the signoff check box label Added auto "add sign off line" to commit Added auto sign off option to general settings Added auto sign off option in settings Change libqt-core to libqtcore4 for intrepid in checkinstall script Make default new project directory ~/linux-2.6 Add base dir selection for new project dialog Current project is no longer used Add base dir selection to the new projects dialog Fix new project stuff to open up correct repo after clone Cleaned up icons directory Removed unneeded icon pngs Qdevelop cleaned up the project fine Added git blam support to backend gitprocess Added file annotation support with commit search Make sure first column is visible when searching Scrool annotation text box to top after receiving annotaion Cleanup: we no longer use mutex Bring annotated file to front when received FIX: Open dialog failed to refresh the UI Added apply mailbox function to git process backend Added support to push to a selected remote Removed an uneeded debug output message Added apply mail action in tools Added apply mail functionality Fix: apply mail didn't use the file provided in path and did nothing Fix: Make apply mail actully store the last path for it to remember later Fix: apply mail did not refresh after operation completed Added send patch by email functionality Added send patch by mail in toolbar menu Activated send patch by mail menu action Added quit action to file menu and activated it teamGit will now print sha id of the selected commit while exiting to stdout Horst H. von Brand (1): Fix typo in src/mainwindowimpl.cpp -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html [Less]
Posted about 17 years ago by Avery Pennarun
Hi all, I'd like to announce the new v0.2.0 release of gitbuilder, an auto-bisecting autobuilder tool for git-based projects. The new version incorporates several suggestions from end users, including: - a new bar at the top shows the most recent ... [More] builds and their status - the RSS link is now more obvious - non-fatal warnings now turn your build yellow instead of green - we now count and report warnings, errors, and test failures separately - a new changelog script can email recent changes in your repo on a daily/weekly schedule You can see some running gitbuilder examples (including one that tracks git.git) here: http://versabanq.com/demo/build/ And you can download the source code (in perl shell) here: http://github.com/apenwarr/gitbuilder/ Enjoy! Have fun, Avery -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html [Less]
Posted about 17 years ago by Christian Jaeger
Hello Ten days ago I started a thread about "Separating generated files?" [1], and suggested in the end that instead of using git submodule functionality, one might be better off using a tool which can, upon committing files in the repository ... [More] containing generated files, add a link ("reference") pointing to the commit in the source repository which represents the source files they have been generated from, and then when someone is checking out some revision of the source files later, use this information to find the (best-)matching commit in the repository with the generated files. This may also be useful in other situations where one likes to keep repositories separate but they have a version dependency on each other. I've now written a first version of a pair of these two programs, which accomplishes this. You can get them from: http://www.christianjaeger.ch/dyn/pubgit/gitweb?p=intergit.git;a=summary git clone http://christianjaeger.ch/pubgit/intergit.git This will need some finish before really being production ready; it will mainly need some experimentation on how it is to be used exactly, so that possibly missing features in the search and indexing algorithms can be added (like whether it should understand merges between two commits containing references as a commit having both references even if the merge commit doesn't specify a reference), and I'm also keen on some feedback implementation-wise (building the index is currently slow, and some of the problems that I'm listing in the docs (Implementation.txt and TODO.txt) may have solutions I've not been aware of). I've tried to add some useful documentation (see *.txt files), so I'm hoping this helps anyone interested to understand how it works, or just give me some feedback on how it may or may not be useful. I've developed and tested it on Linux. Hints on whether it works under other systems and how to make it work with msysgit would be very appreciated. Christian [1] http://marc.info/?l=git&m=122415845625044&w=2 PS. I've just noticed the thread about "repo - The Multiple Git Repository Tool". I'll have to take a look first to see how it is related to my program--it may take me a few days as I'll be busy. -- My OpenPGP fingerprint: F033 D030 F75D E445 05A1 1865 4ECB DF80 1FE6 92DA -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html [Less]
Posted about 17 years ago by Junio C Hamano
The latest maintenance release GIT 1.6.0.3 is available at the usual places: http://www.kernel.org/pub/software/scm/git/ git-1.6.0.3.tar.{gz,bz2} (source tarball) git-htmldocs-1.6.0.3.tar.{gz,bz2} (preformatted docs) ... [More] git-manpages-1.6.0.3.tar.{gz,bz2} (preformatted docs) The RPM binary packages for a few architectures are also provided as courtesy. RPMS/$arch/git-*-1.6.0.3-1.fc9.$arch.rpm (RPM) This one is larger than usual, as I took two weeks off since 1.6.0.2. ---------------------------------------------------------------- GIT v1.6.0.3 Release Notes ========================== Fixes since v1.6.0.2 -------------------- * "git archive --format=zip" did not honor core.autocrlf while --format=tar did. * Continuing "git rebase -i" was very confused when the user left modified files in the working tree while resolving conflicts. * Continuing "git rebase -i" was also very confused when the user left some staged changes in the index after "edit". * "git rebase -i" now honors the pre-rebase hook, just like the other rebase implementations "git rebase" and "git rebase -m". * "git rebase -i" incorrectly aborted when there is no commit to replay. * Behaviour of "git diff --quiet" was inconsistent with "diff --exit-code" with the output redirected to /dev/null. * "git diff --no-index" on binary files no longer outputs a bogus "diff --git" header line. * "git diff" hunk header patterns with multiple elements separated by LF were not used correctly. * Hunk headers in "git diff" default to using extended regular expressions, fixing some of the internal patterns on non-GNU platforms. * New config "diff.*.xfuncname" exposes extended regular expressions for user specified hunk header patterns. * "git gc" when ejecting otherwise unreachable objects from packfiles into loose form leaked memory. * "git index-pack" was recently broken and mishandled objects added by thin-pack completion processing under memory pressure. * "git index-pack" was recently broken and misbehaved when run from inside .git/objects/pack/ directory. * "git stash apply sash@{1}" was fixed to error out. Prior versions would have applied stash@{0} incorrectly. * "git stash apply" now offers a better suggestion on how to continue if the working tree is currently dirty. * "git for-each-ref --format=%(subject)" fixed for commits with no no newline in the message body. * "git remote" fixed to protect printf from user input. * "git remote show -v" now displays all URLs of a remote. * "git checkout -b branch" was confused when branch already existed. * "git checkout -q" once again suppresses the locally modified file list. * "git clone -q", "git fetch -q" asks remote side to not send progress messages, actually making their output quiet. * Cross-directory renames are no longer used when creating packs. This allows more graceful behavior on filesystems like sshfs. * Stale temporary files under $GIT_DIR/objects/pack are now cleaned up automatically by "git prune". * "git merge" once again removes directories after the last file has been removed from it during the merge. * "git merge" did not allocate enough memory for the structure itself when enumerating the parents of the resulting commit. * "git blame -C -C" no longer segfaults while trying to pass blame if it encounters a submodule reference. * "git rm" incorrectly claimed that you have local modifications when a path was merely stat-dirty. * "git svn" fixed to display an error message when 'set-tree' failed, instead of a Perl compile error. * "git submodule" fixed to handle checking out a different commit than HEAD after initializing the submodule. * The "git commit" error message when there are still unmerged files present was clarified to match "git write-tree". * "git init" was confused when core.bare or core.sharedRepository are set in system or user global configuration file by mistake. When --bare or --shared is given from the command line, these now override such settings made outside the repositories. * Some segfaults due to uncaught NULL pointers were fixed in multiple tools such as apply, reset, update-index. * Solaris builds now default to OLD_ICONV=1 to avoid compile warnings; Solaris 8 does not define NEEDS_LIBICONV by default. * "Git.pm" tests relied on unnecessarily more recent version of Perl. * "gitweb" triggered undef warning on commits without log messages. * "gitweb" triggered undef warnings on missing trees. * "gitweb" now removes PATH_INFO from its URLs so users don't have to manually set the URL in the gitweb configuration. * Bash completion removed support for legacy "git-fetch", "git-push" and "git-pull" as these are no longer installed. Dashless form ("git fetch") is still however supported. Many other documentation updates. ---------------------------------------------------------------- Changes since v1.6.0.2 are as follows: Abhijit Bhopatkar (1): Documentation: Clarify '--signoff' for git-commit Alec Berryman (2): git-svn: factor out svnserve test code for later use git-svn: Always create a new RA when calling do_switch for svn:// Alex Riesen (3): Remove empty directories in recursive merge Add remove_path: a function to remove as much as possible of a path Use remove_path from dir.c instead of own implementation Alexander Gavrilov (1): builtin-blame: Fix blame -C -C with submodules. Björn Steinbrink (1): force_object_loose: Fix memory leak Brandon Casey (14): t9700/test.pl: avoid bareword 'STDERR' in 3-argument open() t9700/test.pl: remove File::Temp requirement diff.c: return pattern entry pointer rather than just the hunk header pattern diff.c: associate a flag with each pattern and use it for compiling regex diff.*.xfuncname which uses "extended" regex's for hunk header selection t4018-diff-funcname: test syntax of builtin xfuncname patterns builtin-prune.c: prune temporary packs in /pack directory git-stash.sh: don't default to refs/stash if invalid ref supplied builtin-merge.c: allocate correct amount of memory git-stash.sh: fix flawed fix of invalid ref handling (commit da65e7c1) remote.c: correct the check for a leading '/' in a remote name t4018-diff-funcname: rework negated last expression test t4018-diff-funcname: demonstrate end of line funcname matching flaw xdiff-interface.c: strip newline (and cr) from line before pattern matching Charles Bailey (2): Add new test to demonstrate git archive core.autocrlf inconsistency Make git archive respect core.autocrlf when creating zip format archives Chris Frey (1): Documentation: clarify the details of overriding LESS via core.pager Dan McGee (1): contrib: update packinfo.pl to not use dashed commands Daniel Barkalow (1): Check early that a new branch is new and valid David Soria Parra (1): Solaris: Use OLD_ICONV to avoid compile warnings Deskin Miller (2): maint: check return of split_cmdline to avoid bad config strings git init: --bare/--shared overrides system/global config Dmitry Potapov (4): git-rebase-interactive: do not squash commits on abort git-rebase--interactive: auto amend only edited commit make prefix_path() never return NULL do not segfault if make_cache_entry failed Eric Raible (1): completion: git commit should list --interactive Eric Wong (1): git-svn: fix handling of even funkier branch names Fabrizio Chiarello (1): builtin-clone: fix typo Garry Dolley (1): Clarified gitattributes documentation regarding custom hunk header. Giuseppe Bilotta (1): gitweb: remove PATH_INFO from $my_url and $my_uri Heikki Orsila (2): Start conforming code to "git subcmd" style part 3 Cosmetical command name fix Imre Deak (1): builtin-apply: fix typo leading to stack corruption Jakub Narebski (2): gitweb: Fix two 'uninitialized value' warnings in git_tree() gitweb: Add path_info tests to t/t9500-gitweb-standalone-no-errors.sh Jeff King (3): Makefile: do not set NEEDS_LIBICONV for Solaris 8 git apply --directory broken for new files tests: shell negation portability fix Joey Hess (1): gitweb: avoid warnings for commits without body Johan Herland (2): for-each-ref: Fix --format=%(subject) for log message without newlines Use strchrnul() instead of strchr() plus manual workaround Johannes Schindelin (2): git rm: refresh index before up-to-date check rebase -i: do not fail when there is no commit to cherry-pick Johannes Sixt (2): git-remote: do not use user input in a printf format string git-push.txt: Describe --repo option in more detail Jonas Fonseca (2): checkout: Do not show local changes when in quiet mode git-check-attr(1): add output and example sections Junio C Hamano (15): discard_cache: reset lazy name_hash bit diff Porcelain: do not disable auto index refreshing on -C -C diff --quiet: make it synonym to --exit-code >/dev/null Don't verify host name in SSL certs when GIT_SSL_NO_VERIFY is set Fix permission bits on sources checked out with an overtight umask checkout: do not lose staged removal diff/diff-files: do not use --cc too aggressively Start draft release notes for 1.6.0.3 diff: use extended regexp to find hunk headers diff hunk pattern: fix misconverted "\{" tex macro introducers Update draft release notes to 1.6.0.3 diff(1): clarify what "T"ypechange status means Hopefully the final draft release notes update before 1.6.0.3 Fix testcase failure when extended attributes are in use GIT 1.6.0.3 Linus Torvalds (1): fix bogus "diff --git" header from "diff --no-index" Luc Heinrich (1): git-svn: call 'fatal' correctly in set-tree Matt McCutchen (1): t1301-shared-repo.sh: don't let a default ACL interfere with the test Michael J Gruber (1): make "git remote" report multiple URLs Michael Prokop (1): Replace svn.foo.org with svn.example.com in git-svn docs (RFC 2606) Mikael Magnusson (4): Typo "bogos" in format-patch error message. git-repack uses --no-repack-object, not --no-repack-delta. Fix a few typos in relnotes Typo "does not exists" when git remote update remote. Miklos Vajna (2): test-lib: fix color reset in say_color() Add testcase to ensure merging an early part of a branch is done properly Nanako Shiraishi (2): docs: describe pre-rebase hook Teach rebase -i to honor pre-rebase hook Nicolas Pitre (2): fix pread()'s short read in index-pack rehabilitate 'git index-pack' inside the object store Petr Baudis (1): Do not perform cross-directory renames when creating packs Ping Yin (1): git-submodule: Fix "Unable to checkout" for the initial 'update' Rafael Garcia-Suarez (1): Clarify commit error message for unmerged files SZEDER Gábor (5): t0024: add executable permission Documentation: remove '\' in front of short options rebase -i: proper prepare-commit-msg hook argument when squashing rebase -i: remove leftover debugging bash: remove fetch, push, pull dashed form leftovers Samuel Tardieu (1): Do not use errno when pread() returns 0 Shawn O. Pearce (3): Update release notes for 1.6.0.3 Update release notes for 1.6.0.3 test-lib: fix broken printf Stephen Haberman (1): Clarify how the user can satisfy stash's 'dirty state' check. Thomas Rast (1): sha1_file: link() returns -1 on failure, not errno Todd Zullinger (1): Use dashless git commands in setgitperms.perl Tuncer Ayaz (1): Fix fetch/clone --quiet when stdout is connected Yann Dirson (1): Bust the ghost of long-defunct diffcore-pathspec. martin f. krafft (1): Improve git-log documentation wrt file filters -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html [Less]