Skip to content

Commit ea4d90d

Browse files
committed
switch to main branch
1 parent b75229a commit ea4d90d

4 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/xmllint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
xmllint:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@master
9+
- uses: actions/checkout@v4
1010
- name: Run XMLLint
1111
uses: ChristophWurst/xmllint-action@v1
1212
with:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
![Test Status](https://github.com/mushorg/conpot/workflows/Code%20tests/badge.svg)
44
[![Docs](https://readthedocs.org/projects/conpot/badge/?version=latest)](https://conpot.readthedocs.io/en/latest/)
5-
[![Coverage Status](https://coveralls.io/repos/github/mushorg/conpot/badge.svg?branch=master)](https://coveralls.io/github/mushorg/conpot?branch=master)
5+
[![Coverage Status](https://coveralls.io/repos/github/mushorg/conpot/badge.svg?branch=main)](https://coveralls.io/github/mushorg/conpot?branch=main)
66
[![Docker Build Status](https://img.shields.io/docker/build/honeynet/conpot.svg)](https://hub.docker.com/r/honeynet/conpot)
77

88
## About

docs/source/development/guidelines.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Recommended git workflow
4747
For contributors
4848
~~~~~~~~~~~~~~~~
4949

50-
0, You can do this step when you are on master, or feature_branch, anytime there are new commits in original project.
50+
0, You can do this step when you are on main, or feature_branch, anytime there are new commits in original project.
5151

5252
Just one-time add of remote:
5353

@@ -60,9 +60,9 @@ And rebase:
6060
::
6161

6262
git fetch mushorg
63-
git rebase mushorg/master feature_branch
63+
git rebase mushorg/main feature_branch
6464

65-
This way, your feature_branch or master will be up-to-date.
65+
This way, your feature_branch or main will be up-to-date.
6666

6767
1, For every feature, create new branch:
6868

@@ -121,20 +121,20 @@ To avoid additional Merge commits, use cherry-pick:
121121

122122
::
123123

124-
git checkout master
124+
git checkout main
125125
git remote add user https://github.com/user/conpot.git
126126
git fetch user
127127
(look at 'git log user/feature_branch')
128128
git cherry-pick commit_hash
129-
git push origin master
129+
git push origin main
130130
git remote rm user
131131

132-
Comment on pull request that you added it to master, and close pull request.
132+
Comment on pull request that you added it to main, and close pull request.
133133

134134
This approach is usefull for majority of pull requests (1-3 commits).
135135

136136
If you expect conflicts (a lot of commits in feature branch with a lot of changes) you can use GitHub Merge button.
137137

138138
Revert will be easier too.
139139

140-
Conflicts should not happen, if feature branch is rebased on current master.
140+
Conflicts should not happen, if feature branch is rebased on current main.

docs/source/faq.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Raw data in JSON formatting.
2727

2828
**How do I get the data?**
2929

30-
There is a Python `client <https://github.com/mushorg/conpot/blob/master/bin/conpot_hpf_client>`_
30+
There is a Python `client <https://github.com/mushorg/conpot/blob/main/bin/conpot_hpf_client>`_
3131
which uses the HPFeeds library. About 40 lines of code. From there it's
3232
quite easy to write the data to a database.
3333
You can find an explanation on how it works

0 commit comments

Comments
 (0)