This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
сервис_git [2023/09/14 15:37] val [On-Premise gitlab] |
сервис_git [2025/01/10 06:20] (current) val [On-Premise gitlab] |
||
---|---|---|---|
Line 20: | Line 20: | ||
server:~$ cd conf/ | server:~$ cd conf/ | ||
+ | или | ||
+ | server:~$ git -C conf/ ... | ||
server:~/conf$ echo Hello World > file1 | server:~/conf$ echo Hello World > file1 | ||
Line 61: | Line 63: | ||
server:~/conf$ git diff <commit hash N> <commit hash M> file1 | server:~/conf$ git diff <commit hash N> <commit hash M> file1 | ||
+ | |||
+ | server:~/conf$ git reset --hard <commit hash N> | ||
</code> | </code> | ||
Line 118: | Line 122: | ||
* [[https://stackoverflow.com/questions/6565357/git-push-requires-username-and-password|Git push requires username and password]] | * [[https://stackoverflow.com/questions/6565357/git-push-requires-username-and-password|Git push requires username and password]] | ||
+ | * [[https://stackoverflow.com/questions/5480258/how-can-i-delete-a-remote-tag|How can I delete a remote tag?]] | ||
<code> | <code> | ||
Line 142: | Line 147: | ||
$ git tag | $ git tag | ||
+ | |||
+ | $ ###git tag -d ver1.3 | ||
+ | $ ###git push --delete origin ver1.3 | ||
</code> | </code> | ||