c8c90cefb3
--HG-- branch : develop
14 lines
218 B
Bash
Executable File
14 lines
218 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Commit hook. Helps update bookmark.
|
|
# Put this file in your path.
|
|
#
|
|
# Edit file .hg/hgrc
|
|
#
|
|
# [hooks]
|
|
# outgoing = outgoinghook
|
|
|
|
sh -c "hg push -f git+ssh://git@github.com/dismine/Valentina.git" &
|
|
|
|
exit 0;
|