summary refs log tree commit diff stats
path: root/icons
Commit message (Expand)AuthorAgeFilesLines
* Added icons support for Visual Studio compilerFredrik Høisæther Rasch2016-09-304-0/+0
* nimrod -> nim in some filenamesdef2015-02-145-3/+3
* Removes executable bit for text files.Grzegorz Adam Hankiewicz2013-03-166-0/+0
* restored files that 'koch clean' removedAraq2012-04-162-0/+0
* fixes #105Araq2012-04-162-0/+0
* win64 is a supported target; bugfix: nimrod c -r on windows; stdlib uses wid...Araq2012-03-042-0/+0
* non-nil AST; continue after errors for IDE supportAraq2011-02-124-0/+0
* version 0.8.10Araq2010-10-216-0/+6
t@lavabit.com> 2010-02-04 02:45:30 +0100 committer hut <hut@lavabit.com> 2010-02-04 02:45:30 +0100 added doc/pick.sh' href='/akspecs/ranger/commit/doc/pick.sh?h=v1.9.2&id=8111b8e97219ef289b25a296a2775c8975b01dc9'>8111b8e9 ^
95b7c7b6 ^
3eca1d01 ^
95b7c7b6 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25









                                                          


                                                                
 
                              




                                               
                                                                           
 
                              
                         
                                
#!/bin/bash

# I work on a branch (named hut) which contains commits
# that should not be part of the standard distribution.
#
# This script picks all the good commits from hut and
# adds them to the master branch.
# Bad commits are marked with a "custom:" at the beginning
# of the commit message.

MASTER_BRANCH='master'
CUSTOM_BRANCH='hut'
ORIGINAL_BRANCH=`git branch 2>/dev/null|grep -e ^* | tr -d \*\ `

git checkout -m $MASTER_BRANCH

while read -r hash tag rest; do
	if [ $tag != 'custom:' ]; then
		git cherry-pick $hash || exit 1
	fi
done < <(git log --oneline --no-color $MASTER_BRANCH..$CUSTOM_BRANCH | tac)

git checkout -m $CUSTOM_BRANCH
git rebase $MASTER_BRANCH
git checkout -m $ORIGINAL_BRANCH