Used for some Git experimentation
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.

15 lines
645 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
4 years ago
## git checkout -b main
4 years ago
## git add fender.md # registers this file to be included in a commit
4 years ago
## git commit -m "first commit" # sealing the box
4 years ago
## git remote add origin ssh://git@config.tombstones.org.uk:22022/dave/experiments.git # point to the "sending destination"
4 years ago
## git push -u origin main # "deliver" the package
4 years ago
## now.. if you set a default branch with:
4 years ago
## git push --set-upstream origin main
4 years ago
## .... then you can just use:
## git push # deliver to the main post office