Hi folks,
is there already an command for directly manipulating refs
(eg. set a specific to given object id) ?
cu
--
----------------------------------------------------------------------
Enrico Weigelt, metux IT service -- http://www.metux.de/
phone: +49 36207 519931 email: weigelt@metux.de
mobile: +49 151 27565287 icq: 210169427 skype: nekrad666
----------------------------------------------------------------------
Embedded-Linux / Portierung / Opensource-QM / Verteilte Systeme
----------------------------------------------------------------------
Hi Enrico,
Enrico Weigelt wrote:
is there already an command for directly manipulating refs
(eg. set a specific to given object id) ?
$ man git |grep ref
Do not use replacement refs to replace git objects. See git-replace(1) for more information.
See the references above to get started using git. The following is probably more detail than necessary
Move objects and refs by archive.
Download objects and refs from another repository.
Update remote refs along with associated objects.
(deprecated) Recover lost refs that luckily have not yet been pruned.
git-pack-refs(1)
git-reflog(1)
Manage reflog information.
Create, list, delete refs to replace objects.
move objects and references between repositories.
git-symbolic-ref(1)
Read and modify symbolic refs.
git-update-ref(1)
Update the object name stored in a ref safely.
git-for-each-ref(1)
Output information on each ref.
List references in a remote repository.
git-show-ref(1)
List references in a local repository.
git-check-ref-format(1)
Ensures that a reference name is well formed.
...
Perhaps you are looking for git-update-ref.
Hope that helps,
Jonathan
On Mon, 6 Sep 2010, Enrico Weigelt wrote:
Hi folks,
is there already an command for directly manipulating refs
(eg. set a specific to given object id) ?
http://www.kernel.org/pub/software/scm/git/docs/git-update-ref.html
Nicolas