Skip to content

Instantly share code, notes, and snippets.

View Koubae's full-sized avatar
💥

Federico Bau Koubae

💥
View GitHub Profile
@FrancesCoronel
FrancesCoronel / sampleREADME.md
Last active February 10, 2025 02:48
A sample README for all your GitHub projects.

Repository Title Goes Here

Frances Coronel

INSERT GRAPHIC HERE (include hyperlink in image)

Subtitle or Short Description Goes Here

ideally one sentence >

{% extends 'admin/master.html' %}
{% import 'admin/lib.html' as lib with context %}
{% block body %}
{% call lib.form_tag() %}
{{ lib.render_form_fields(form) }}
<input type="submit" />
{% endcall %}
{% endblock %}
@BenConstable
BenConstable / move-commits.sh
Created November 9, 2012 10:41
Move commits onto feature branch
#
# If, for example, you've accidentally made some commits to master
# that should be on a feature branch, this set of commands will
# move those commits over to a feature branch and reset master to
# where it should be both locally and on the remote.
#
# References:
#
# - http://stackoverflow.com/questions/1628563/move-recent-commit-to-a-new-branch
# - http://stackoverflow.com/questions/1377845/git-reset-hard-and-a-remote-repository