Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
food-round3
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
eric_a_scuccimarra
food-round3
Commits
d5d70a6e
Commit
d5d70a6e
authored
4 years ago
by
nikhil_rayaprolu
Browse files
Options
Downloads
Patches
Plain Diff
Update README.md
parent
747d74f4
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+53
-0
53 additions, 0 deletions
README.md
with
53 additions
and
0 deletions
README.md
+
53
−
0
View file @
d5d70a6e
...
@@ -219,6 +219,59 @@ You now should be able to see the details of your submission at :
...
@@ -219,6 +219,59 @@ You now should be able to see the details of your submission at :
[
gitlab.aicrowd.com/<YOUR_AICROWD_USER_NAME>/food-challenge-pytorch-baseline/issues
](
gitlab.aicrowd.com/
<YOUR_AICROWD_USER_NAME>
/food-challenge-pytorch-baseline/issues)
[
gitlab.aicrowd.com/<YOUR_AICROWD_USER_NAME>/food-challenge-pytorch-baseline/issues
](
gitlab.aicrowd.com/
<YOUR_AICROWD_USER_NAME>
/food-challenge-pytorch-baseline/issues)
## Using http instead of ssh (Personal Access Token):
In order to use http to clone repositories and submit on gitlab:
a) Create a personal access token
1.
Log in to GitLab.
2.
In the upper-right corner, click your avatar and select Settings.
3.
On the User Settings menu, select Access Tokens.
4.
Choose a name and optional expiry date for the token.
5.
Choose the desired scopes.
6.
Click the Create personal access token button.
7.
Save the personal access token somewhere safe, lets call it XXX for now.
Once you leave or refresh the page, you won’t be able to access it again.
b) to clone a repo use the following command:
git clone
[
https://oauth2:XXX@gitlab.aicrowd.com/(username)/(repo_name).git
](
https://oauth2:XXX@gitlab.aicrowd.com/(username
)
/(repo_name).git)
c)submit a solution:
```
cd into your submission repo on gitlab
cd (repo_name)
#Add AICrowd git remote endpoint
git remote add aicrowd https://oauth2:XXX@gitlab.aicrowd.com/(username)/(repo_name).git
git push aicrowd master
# Create a tag for your submission and push
git tag -am "submission-v0.1" submission-v0.1
git push aicrowd master
git push aicrowd submission-v0.1
# Note : If the contents of your repository (latest commit hash) does not change,
# then pushing a new tag will not trigger a new evaluation.
```
**Best of Luck**
**Best of Luck**
## Miscelaneous Resources
## Miscelaneous Resources
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment