summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
| * | | | | | | | | Merge remote-tracking branch 'upstream/master' into fix-git-hooks-when-creati...Lin Jen-Shin2016-12-10173-758/+2004
| |\ \ \ \ \ \ \ \ \
| * | | | | | | | | | Should pass branch name, not commit object!Lin Jen-Shin2016-12-101-5/+6
| * | | | | | | | | | Pass source_commit so that we save a few lookupsLin Jen-Shin2016-12-103-50/+54
| * | | | | | | | | | Use rugged.references.delete to delete referenceLin Jen-Shin2016-12-091-3/+3
| * | | | | | | | | | Introduce git_action and normalize previous_pathLin Jen-Shin2016-12-091-26/+46
| * | | | | | | | | | Should pass repository rather than projectLin Jen-Shin2016-12-081-1/+2
| * | | | | | | | | | Merge remote-tracking branch 'upstream/master' into fix-git-hooks-when-creati...Lin Jen-Shin2016-12-08333-2185/+5296
| |\ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | rubocop prefers lisp styleLin Jen-Shin2016-12-082-6/+2
| * | | | | | | | | | | Fix tests to use the new APILin Jen-Shin2016-12-0812-42/+130
| * | | | | | | | | | | Introduce Repository#with_tmp_ref which we needLin Jen-Shin2016-12-088-29/+54
| * | | | | | | | | | | source_branch -> source_branch_nameLin Jen-Shin2016-12-081-8/+9
| * | | | | | | | | | | Cleanup parameters, easier to understand andLin Jen-Shin2016-12-089-95/+130
| * | | | | | | | | | | Simply give result if result[:status] == :errorLin Jen-Shin2016-12-081-11/+3
| * | | | | | | | | | | Prefer repository.branch_exists?Lin Jen-Shin2016-12-081-3/+3
| * | | | | | | | | | | We still need it for empty repo for web UI!Lin Jen-Shin2016-12-081-1/+2
| * | | | | | | | | | | find the commit properly and replicate gitlab_gitLin Jen-Shin2016-12-081-1/+5
| * | | | | | | | | | | We probably don't need this anymore, not sure whyLin Jen-Shin2016-12-081-2/+1
| * | | | | | | | | | | Spaces around hash bracesLin Jen-Shin2016-12-081-9/+9
| * | | | | | | | | | | We need to normalize the path for all actionsLin Jen-Shin2016-12-081-4/+6
| * | | | | | | | | | | Use branch_name to find the branch rather than refLin Jen-Shin2016-12-081-2/+2
| * | | | | | | | | | | Restore the check for update in commit_fileLin Jen-Shin2016-12-081-0/+8
| * | | | | | | | | | | Use commit_file for commit_dirLin Jen-Shin2016-12-081-14/+24
| * | | | | | | | | | | Use multi_action to commit which doesn't need toLin Jen-Shin2016-12-071-63/+36
| * | | | | | | | | | | Not sure why rubocop prefers this but anywayLin Jen-Shin2016-12-071-2/+2
| * | | | | | | | | | | Commit outside the hooks if possible:Lin Jen-Shin2016-12-073-64/+65
| * | | | | | | | | | | Pass source_branch properly for cherry-pick/revertLin Jen-Shin2016-12-073-16/+21
| * | | | | | | | | | | Re-enable tests for update_branch_with_hooks andLin Jen-Shin2016-12-062-14/+51
| * | | | | | | | | | | Fix update_ref! call in the testLin Jen-Shin2016-12-061-1/+2
| * | | | | | | | | | | Introduce GitOperationService and wrap everyLin Jen-Shin2016-12-063-157/+197
| * | | | | | | | | | | Merge remote-tracking branch 'upstream/master' into fix-git-hooks-when-creati...Lin Jen-Shin2016-12-03673-6003/+10085
| |\ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | Add some explanation to Repository#update_branch_with_hooksLin Jen-Shin2016-11-251-2/+5
| * | | | | | | | | | | | Fix local name from branch to branch_nameLin Jen-Shin2016-11-241-1/+1
| * | | | | | | | | | | | Should also pass source_commit to raw_ensure_branchLin Jen-Shin2016-11-241-0/+1
| * | | | | | | | | | | | Merge remote-tracking branch 'upstream/master' into fix-git-hooks-when-creati...Lin Jen-Shin2016-11-24787-2402/+3170
| |\ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | Move all branch creation to raw_ensure_branch,Lin Jen-Shin2016-11-225-49/+69
| * | | | | | | | | | | | | Merge remote-tracking branch 'upstream/master' into fix-git-hooks-when-creati...Lin Jen-Shin2016-11-22844-4253/+19176
| |\ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | Try if branch_exists? would work, feedback:Lin Jen-Shin2016-11-151-1/+1
| * | | | | | | | | | | | | | @ref might not existLin Jen-Shin2016-11-151-1/+1
| * | | | | | | | | | | | | | Add a few comments to explain implementation detailLin Jen-Shin2016-11-152-0/+5
| * | | | | | | | | | | | | | Don't pass source_branch if it doesn't existLin Jen-Shin2016-11-151-1/+2
| * | | | | | | | | | | | | | Make sure we have the branch on the other projectLin Jen-Shin2016-11-153-10/+21
| * | | | | | | | | | | | | | Branch could be nil if it's an empty repoLin Jen-Shin2016-11-151-4/+9
| * | | | | | | | | | | | | | Add missing space due to Sublime TextLin Jen-Shin2016-11-151-1/+1
| * | | | | | | | | | | | | | Make sure we create target branch for cherry/revertLin Jen-Shin2016-11-151-7/+10
| * | | | | | | | | | | | | | Fix the case when it's a whole new branchLin Jen-Shin2016-11-151-3/+2
| * | | | | | | | | | | | | | They're never referredLin Jen-Shin2016-11-151-2/+2
| * | | | | | | | | | | | | | Fix issues found by rubocopLin Jen-Shin2016-11-151-6/+14
| * | | | | | | | | | | | | | Add `source_branch` option for various git operationsLin Jen-Shin2016-11-1510-53/+145
| * | | | | | | | | | | | | | Revert "Don't execute git hooks if you create branch as part of other change"Lin Jen-Shin2016-11-154-10/+6
| * | | | | | | | | | | | | | Merge remote-tracking branch 'upstream/master' into fix-git-hooks-when-creati...Lin Jen-Shin2016-11-15673-12672/+16715
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \