aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/git/git.go
Commit message (Collapse)AuthorAgeFilesLines
* syz-ci: send commits to dashboardDmitry Vyukov2017-07-281-4/+15
| | | | | | Dashboard needs to know when bug fixing commits reach builders in order to fully close bugs. Send commits that dashboard is interested in to dashboard.
* all: use consistent file permissionsDmitry Vyukov2017-07-031-1/+1
| | | | | | | | | | | | | | | | Currently we have unix permissions for new files/dirs hardcoded throughout the code base. Some places use 0644, some - 0640, some - 0600 and a variety of other constants. Introduce osutil.MkdirAll/WriteFile that use the default permissions and use them throughout the code base. This makes permissions consistent and also allows to easily change the permissions later if we change our minds. Also merge pkg/fileutil into pkg/osutil as they become dependent on each other. The line between them was poorly defined anyway as both operate on files.
* report: add get maintainers functionAndrey Konovalov2017-06-261-2/+1
|
* pkg/git: improve PollDmitry Vyukov2017-06-201-1/+12
| | | | Support changing repo/branch and force pushes.
* pkg/git: check origin repo in PollDmitry Vyukov2017-06-191-15/+27
|
* pkg/git: fix git fetch command lineDmitry Vyukov2017-06-151-1/+1
|
* pkg/git: don't use --no-tags with cloneDmitry Vyukov2017-06-031-1/+0
| | | | It's not supported in older versions of git.
* pkg/kernel: add new packageDmitry Vyukov2017-06-031-31/+9
| | | | | Move functionality to build kernel/image from syz-gce to a separate package.
* pkg/git: add new packageDmitry Vyukov2017-06-011-0/+86
Move few helper git-related functions from syz-gce to a separate pkg/git package.