This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ambience clone: from https://github.com/tenplus1/ambience.git | |
areas clone: from [email protected]:ShadowNinja/areas.git | |
awards clone: from https://github.com/minetest-mods/awards.git | |
bakedclay clone: from https://github.com/tenplus1/bakedclay.git | |
channels clone: from https://github.com/SmallJoker/channels.git | |
clean >> créé avec l'aide de fhwcat, récupéré le document de base sur https://forum.minetest.net/viewtopic.php?t=2777 | |
email clone: from https://github.com/rubenwardy/email.git | |
farming clone: from https://github.com/tenplus1/farming.git | |
hopper clone: from https://github.com/tenplus1/hopper.git | |
irc clone: from https://github.com/minetest-mods/irc.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
# Un script bash pour automatiser la creation de repository git | |
echo "On va demarrer git" | |
# Le nom du repo sera l'argument de la commande : | |
mkdir $1 | |
# On va se placer dans le repo : |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# https://gist.github.com/robwierzbowski/5430952/ | |
# Create and push to a new github repo from the command line. | |
# Grabs sensible defaults from the containing folder and `.gitconfig`. | |
# Refinements welcome. | |
# Gather constant vars | |
CURRENTDIR=${PWD##*/} | |
GITHUBUSER=$(git config github.user) |