You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
612 B
14 lines
612 B
4 years ago
|
## some information that should be added to the TEST area
|
||
|
## ... used the following to get this:
|
||
|
## vi (this file)
|
||
|
## git init # initialise a git folder
|
||
|
## git add . # registers this file to be included in a commit
|
||
|
## git commit -m "first commit" # sealing the box
|
||
|
## git remote add origin ssh://git@config.tombstones.org.uk:22022/dockeruser/test.git # point to the "sending destination"
|
||
|
## git push -u origin master # "deliver" the package
|
||
|
|
||
|
## now.. if you set a default branch with:
|
||
|
## git push --set-upstream origin master
|
||
|
## .... then you can just use:
|
||
|
## git push # deliver to the main post office
|