mirror of
https://github.com/correl/rebar.git
synced 2024-11-15 11:09:33 +00:00
Comment git vsn cmd changes
This commit is contained in:
parent
93128f2f6b
commit
475daf2c4a
1 changed files with 3 additions and 1 deletions
|
@ -166,7 +166,9 @@ vcs_vsn(Vcs, Dir) ->
|
||||||
end.
|
end.
|
||||||
|
|
||||||
vcs_vsn_cmd(git) ->
|
vcs_vsn_cmd(git) ->
|
||||||
%% git describe a committish to accomodate for subtrees or deps/apps
|
%% Explicitly git-describe a committish to accomodate for projects
|
||||||
|
%% in subdirs which don't have a GIT_DIR. In that case we will
|
||||||
|
%% get a description of the last commit that touched the subdir.
|
||||||
"git describe --always --tags `git log -n 1 --pretty=format:%h .`";
|
"git describe --always --tags `git log -n 1 --pretty=format:%h .`";
|
||||||
vcs_vsn_cmd(hg) -> "hg identify -i";
|
vcs_vsn_cmd(hg) -> "hg identify -i";
|
||||||
vcs_vsn_cmd(bzr) -> "bzr revno";
|
vcs_vsn_cmd(bzr) -> "bzr revno";
|
||||||
|
|
Loading…
Reference in a new issue