3 # Script to add some local git customizations suitable for working
4 # with the GCC git repository
10 printf "%s [%s]? " "$question" "$default"
12 if [ "x$answer" = "x" ]
20 # Add a git command to find the git commit equivalent to legacy SVN revision NNN
21 git config
alias.svn-rev
'!f() { rev=$1; shift; git log --all --grep="^From-SVN: r\\?$rev\\b" "${@}"; } ; f'
23 # Add git commands to convert git commit to monotonically increasing revision number
25 git config
alias.gcc-descr
'!f() { "`git rev-parse --show-toplevel`/contrib/git-descr.sh" $@; } ; f'
26 git config
alias.gcc-undescr
'!f() { "`git rev-parse --show-toplevel`/contrib/git-undescr.sh" $@; } ; f'
28 git config
alias.gcc-verify
'!f() { "`git rev-parse --show-toplevel`/contrib/gcc-changelog/git_check_commit.py" $@; } ; f'
29 git config
alias.gcc-backport
'!f() { "`git rev-parse --show-toplevel`/contrib/git-backport.py" $@; } ; f'
30 git config
alias.gcc-fix-changelog
'!f() { "`git rev-parse --show-toplevel`/contrib/git-fix-changelog.py" $@; } ; f'
31 git config
alias.gcc-mklog
'!f() { "`git rev-parse --show-toplevel`/contrib/mklog.py" $@; } ; f'
32 git config
alias.gcc-commit-mklog
'!f() { "`git rev-parse --show-toplevel`/contrib/git-commit-mklog.py" "$@"; }; f'
34 # Make diff on MD files use "(define" as a function marker.
35 # Use this in conjunction with a .gitattributes file containing
37 git config
diff.md.xfuncname
'^\(define.*$'
39 # Tell git send-email where patches go.
40 # ??? Maybe also set sendemail.tocmd to guess from MAINTAINERS?
41 git config sendemail.to
'gcc-patches@gcc.gnu.org'
43 set_user
=$
(git config
--get "user.name")
44 set_email
=$
(git config
--get "user.email")
46 if [ "x$set_user" = "x" ]
48 # Try to guess the user's name by looking it up in the password file
49 if type getent
>/dev
/null
2>&1; then
50 new_user
=$
(getent passwd $
(whoami
) |
awk -F: '{ print $5 }')
51 elif [ $
(uname
-s) = Darwin
]; then
52 new_user
=$
(id
-F 2>/dev
/null
)
54 if [ "x$new_user" = "x" ]
56 new_user
="(no default)"
61 ask
"Your name" "${new_user}" new_user
62 if [ "x$new_user" = "x(no default)" ]
64 echo "Cannot continue, git needs to record your name against commits"
68 if [ "x$set_email" = "x" ]
70 new_email
="(no_default)"
75 ask
"Your email address (for git commits)" "${new_email}" new_email
76 if [ "x$new_email" = "x(no default)" ]
78 echo "Cannot continue, git needs to record your email address against commits"
82 if [ "x$set_user" != "x$new_user" ]
84 git config
"user.name" "$new_user"
87 if [ "x$set_email" != "x$new_email" ]
89 git config
"user.email" "$new_email"
92 upstream
=$
(git config
--get "gcc-config.upstream")
93 if [ "x$upstream" = "x" ]
97 ask
"Local name for upstream repository" "origin" upstream
99 v
=$
(git config
--get-all "remote.${upstream}.fetch")
102 echo "Remote $upstream does not seem to exist as a remote"
105 git config
"gcc-config.upstream" "$upstream"
107 remote_id
=$
(git config
--get "gcc-config.user")
108 if [ "x$remote_id" = "x" ]
110 # See if the url specifies the remote user name.
111 url
=$
(git config
--get "remote.$upstream.url")
114 # This is a pure guess, but for many people it might be OK.
117 remote_id
=$
(echo $url |
sed 's|^.*ssh://\(..*\)@gcc.gnu.org.*$|\1|')
118 if [ x
$remote_id = x
$url ]
125 ask
"Account name on gcc.gnu.org (for your personal branches area)" "$remote_id" remote_id
126 git config
"gcc-config.user" "$remote_id"
128 old_pfx
=$
(git config
--get "gcc-config.userpfx")
129 if [ "x$old_pfx" = "x" ]
134 echo "Local branch prefix for personal branches you want to share"
135 echo "(local branches starting <prefix>/ can be pushed directly to your"
136 ask
"personal area on the gcc server)" $old_pfx new_pfx
137 git config
"gcc-config.userpfx" "$new_pfx"
140 ask
"Install prepare-commit-msg git hook for 'git commit-mklog' alias" yes dohook
141 if [ "x$dohook" = xyes
]; then
142 hookdir
=`git rev-parse --git-path hooks 2>/dev/null`
143 if [ $?
-eq 0 ]; then
144 if [ -f "$hookdir/prepare-commit-msg" ]; then
145 echo " Moving existing prepare-commit-msg hook to prepare-commit-msg.bak"
146 mv "$hookdir/prepare-commit-msg" "$hookdir/prepare-commit-msg.bak"
148 install -c "`git rev-parse --show-toplevel`/contrib/prepare-commit-msg" "$hookdir"
150 echo " `git --version` is too old, cannot find hooks dir"
154 # Scan the existing settings to see if there are any we need to rewrite.
155 vendors
=$
(git config
--get-all "remote.${upstream}.fetch" "refs/vendors/" |
sed 's:.*refs/vendors/\([^/][^/]*\)/.*:\1:' |
sort |
uniq)
156 url
=$
(git config
--get "remote.${upstream}.url")
157 pushurl
=$
(git config
--get "remote.${upstream}.pushurl")
160 echo "Migrating vendor \"$v\" to new remote \"vendors/$v\""
161 git config
--unset-all "remote.${upstream}.fetch" "refs/vendors/$v/"
162 git config
--unset-all "remote.${upstream}.push" "refs/vendors/$v/"
163 git config
"remote.vendors/${v}.url" "${url}"
164 if [ "x$pushurl" != "x" ]
166 git config
"remote.vendors/${v}.pushurl" "${pushurl}"
168 git config
--add "remote.vendors/${v}.fetch" "+refs/vendors/$v/heads/*:refs/remotes/vendors/${v}/*"
169 git config
--add "remote.vendors/${v}.fetch" "+refs/vendors/$v/tags/*:refs/tags/vendors/${v}/*"
172 # Convert the remote 'pfx' to users/pfx to avoid problems with ambiguous refs
174 old_remote
=$
(git config
--get "remote.${old_pfx}.url")
175 if [ -n "${old_remote}" ]
177 echo "Migrating remote \"${old_pfx}\" to new remote \"users/${new_pfx}\""
178 # Create a dummy fetch rule that will cause the subsequent prune to remove the old remote refs.
179 git config
--replace-all "remote.${old_pfx}.fetch" "+refs/empty/*:refs/remotes/${old_pfx}/*"
181 git remote prune
${old_pfx}
182 git config
--remove-section "remote.${old_pfx}"
183 for br
in $
(git branch
--list "${old_pfx}/*")
185 old_remote
=$
(git config
--get "branch.${br}.remote")
186 if [ "${old_remote}" = "${old_pfx}" ]
188 git config
"branch.${br}.remote" "users/${new_pfx}"
193 echo "Setting up tracking for personal namespace $remote_id in remotes/users/${new_pfx}"
194 git config
"remote.users/${new_pfx}.url" "${url}"
195 if [ "x$pushurl" != "x" ]
197 git config
"remote.users/${new_pfx}.pushurl" "${pushurl}"
199 git config
--replace-all "remote.users/${new_pfx}.fetch" "+refs/users/${remote_id}/heads/*:refs/remotes/users/${new_pfx}/*" "refs/users/${remote_id}/heads/"
200 git config
--replace-all "remote.users/${new_pfx}.fetch" "+refs/users/${remote_id}/tags/*:refs/tags/users/${new_pfx}/*" "refs/users/${remote_id}/tags/"
201 git config
--replace-all "remote.users/${new_pfx}.push" "refs/heads/${new_pfx}/*:refs/users/${remote_id}/heads/*" "refs/users/${remote_id}"
203 if [ "$old_pfx" != "$new_pfx" -a "$old_pfx" != "${upstream}" ]
205 git config
--remove-section "remote.${old_pfx}"
208 git config
--unset-all "remote.${upstream}.fetch" "refs/users/${remote_id}/"
209 git config
--unset-all "remote.${upstream}.push" "refs/users/${remote_id}/"
211 git fetch
"users/${new_pfx}"