Skip to content

Instantly share code, notes, and snippets.

View dtarcz's full-sized avatar

David TARCZEWSKI dtarcz

View GitHub Profile
@dtarcz
dtarcz / liste-mods.txt
Created February 10, 2017 15:11
liste_mods_Minaventure_2017-02-10
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
@dtarcz
dtarcz / git-go.sh
Created February 2, 2016 13:47
automate git create repo
#! /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 :
@robwierzbowski
robwierzbowski / gitcreate.sh
Last active December 27, 2024 11:23
A simple litte script. Create and push to a new github repo from the command line.
#!/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)