mirror of
https://github.com/abapGit/abapGit.git
synced 2025-04-30 03:36:32 +08:00
fix #784
This commit is contained in:
parent
d663aef5fc
commit
a17b32a7b0
|
@ -1,54 +0,0 @@
|
|||
- title: Guides
|
||||
items:
|
||||
- file: guide-install
|
||||
title: Installation
|
||||
- file: guide-upgrade
|
||||
title: Upgrading
|
||||
- file: guide-uninstall
|
||||
title: Uninstalling
|
||||
- title: Online projects
|
||||
subitems:
|
||||
- file: guide-online-install
|
||||
title: Installing a repository
|
||||
- title: Keeping code up to date
|
||||
file: guide-online-update
|
||||
- title: Uninstalling a repository
|
||||
file: guide-online-uninstall
|
||||
- title: Your first abapGit project
|
||||
file: guide-first-project
|
||||
- title: Moving package into git
|
||||
file: guide-moving-package
|
||||
- title: Contributing to a project
|
||||
file: guide-contributing
|
||||
- title: Offline projects
|
||||
subitems:
|
||||
- title: Importing zip
|
||||
file: guide-import-zip
|
||||
- title: Exporting zip
|
||||
file: guide-export-zip
|
||||
- title: Regular backup
|
||||
file: guide-regular-backup
|
||||
- title: Migrating from SAPlink
|
||||
file: guide-saplink
|
||||
|
||||
- title: Reference
|
||||
items:
|
||||
- title: .abapgit.xml
|
||||
file: ref-dot-abapgit
|
||||
- title: Write protect
|
||||
file: ref-write-protect
|
||||
- title: Supported object types
|
||||
file: ref-supported
|
||||
|
||||
- title: Other
|
||||
items:
|
||||
- title: Articles and Presentations
|
||||
file: other-articles-and-presentations
|
||||
- title: ZABAPGIT_TEST_SSL
|
||||
file: other-test-ssl
|
||||
- title: XML mismatch
|
||||
file: other-xml-mismatch
|
||||
- title: Object File Formats
|
||||
file: other-file-formats
|
||||
- title: Technical Links
|
||||
file: other-technical-links
|
|
@ -1,34 +1,50 @@
|
|||
<!-- Navigation -->
|
||||
{% for section in site.data.navigation %}
|
||||
<div class="nav-section">
|
||||
{% if section.file %}
|
||||
<a href="{{ section.file }}.html">
|
||||
{% endif %}
|
||||
<b>{{ section.title }}</b>
|
||||
{% if section.file %}
|
||||
</a>
|
||||
{% endif %}
|
||||
<h3>Getting Started</h3>
|
||||
<ul>
|
||||
{% for item in section.items %}
|
||||
<li>
|
||||
{% if item.file %}
|
||||
<a href="{{ item.file }}.html">
|
||||
{% assign pages = site.pages | sort: 'order' %}
|
||||
{% for doc in pages %}
|
||||
{% if doc.category == "getting-started" %}
|
||||
<li><a href=".{{ doc.url }}">{{ doc.title }}</a></li>
|
||||
{% endif %}
|
||||
{{ item.title }}
|
||||
{% if item.file %}
|
||||
</a>
|
||||
{% endif %}
|
||||
{% if item.subitems %}
|
||||
<ul>
|
||||
{% for subitem in item.subitems %}
|
||||
<li>
|
||||
<a href="{{ subitem.file }}.html">{{ subitem.title }}</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
||||
<h3>Online Projects</h3>
|
||||
<ul>
|
||||
{% assign pages = site.pages | sort: 'order' %}
|
||||
{% for doc in pages %}
|
||||
{% if doc.category == "online projects" %}
|
||||
<li><a href=".{{ doc.url }}">{{ doc.title }}</a></li>
|
||||
{% endif %}
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<h3>Offline Projects</h3>
|
||||
<ul>
|
||||
{% assign pages = site.pages | sort: 'order' %}
|
||||
{% for doc in pages %}
|
||||
{% if doc.category == "offline projects" %}
|
||||
<li><a href=".{{ doc.url }}">{{ doc.title }}</a></li>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
||||
<h3>Reference</h3>
|
||||
<ul>
|
||||
{% assign pages = site.pages | sort: 'order' %}
|
||||
{% for doc in pages %}
|
||||
{% if doc.category == "reference" %}
|
||||
<li><a href=".{{ doc.url }}">{{ doc.title }}</a></li>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
||||
<h3>Other</h3>
|
||||
<ul>
|
||||
{% assign pages = site.pages | sort: 'order' %}
|
||||
{% for doc in pages %}
|
||||
{% if doc.category == "other" %}
|
||||
<li><a href=".{{ doc.url }}">{{ doc.title }}</a></li>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</ul>
|
|
@ -1,5 +1,7 @@
|
|||
---
|
||||
title: Contributing to a project
|
||||
category: online projects
|
||||
order: 60
|
||||
---
|
||||
|
||||
* Fork the repository
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
---
|
||||
title: Export zip
|
||||
category: offline projects
|
||||
order: 20
|
||||
---
|
||||
|
||||
Assuming the offline project has been created.
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
---
|
||||
title: First project
|
||||
category: online projects
|
||||
order: 40
|
||||
---
|
||||
|
||||
## Repository Setup ##
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
---
|
||||
title: Import zip
|
||||
category: offline projects
|
||||
order: 10
|
||||
---
|
||||
|
||||
1: Run report ZABAPGIT via SE38 or SA38
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
---
|
||||
title: Installation
|
||||
category: getting-started
|
||||
order: 10
|
||||
---
|
||||
|
||||
## ABAP Report ##
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
---
|
||||
title: Moving existing package contents into git
|
||||
title: Moving package into git
|
||||
category: online projects
|
||||
order: 50
|
||||
---
|
||||
|
||||
You have an existing package in your system that you want to copy to a new git repository,
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
---
|
||||
title: Installing online repo
|
||||
category: online projects
|
||||
order: 10
|
||||
---
|
||||
|
||||
* Start ZABAPGIT
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
---
|
||||
title: Uninstall repository
|
||||
category: online projects
|
||||
order: 30
|
||||
---
|
||||
|
||||
* Start ZABAPGIT
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
---
|
||||
title: Keeping code up to date
|
||||
category: online projects
|
||||
order: 20
|
||||
---
|
||||
|
||||
* Start ZABAPGIT, it will automatically compare local and remote code. If code is updated in the remote repository a "pull" link will appear
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
---
|
||||
title: Regular backup
|
||||
category: other
|
||||
order: 10
|
||||
---
|
||||
|
||||
Editing Using abapGit and abapGitServer for regular backup
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
---
|
||||
title: Migrating from SAPlink
|
||||
category: other
|
||||
order: 20
|
||||
---
|
||||
|
||||
1: Install the slinkee/nuggets into the ABAP system using saplink
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
---
|
||||
title: Uinstalling abapGit
|
||||
title: Uninstalling
|
||||
category: getting-started
|
||||
order: 30
|
||||
---
|
||||
|
||||
* Delete ABAP reports ZABAPGIT* using SE38 or SE80
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
---
|
||||
title: Upgrading abapGit
|
||||
title: Upgrading
|
||||
category: getting-started
|
||||
order: 20
|
||||
---
|
||||
|
||||
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
---
|
||||
title: Articles and Presentations
|
||||
category: other
|
||||
order: 30
|
||||
---
|
||||
|
||||
### 2014
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
---
|
||||
title: Object File Formats
|
||||
category: other
|
||||
order: 40
|
||||
---
|
||||
|
||||
# CLAS
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
---
|
||||
title: Technical Links
|
||||
category: other
|
||||
order: 50
|
||||
---
|
||||
|
||||
Collection of links to various git related documentation,
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
---
|
||||
title: ZABAPGIT_TEST_SSL
|
||||
category: other
|
||||
order: 60
|
||||
---
|
||||
|
||||
Following report can be used to test SSL connection to github,
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
---
|
||||
title: XML Mismatch
|
||||
category: other
|
||||
order: 70
|
||||
---
|
||||
|
||||
### For end-users
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
---
|
||||
title: .abapgit.xml
|
||||
category: reference
|
||||
order: 10
|
||||
---
|
||||
|
||||
**.abapgit.xml** is a special abapGit file. It contains meta information of the abapGit project.
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
---
|
||||
title: Supported object types
|
||||
category: reference
|
||||
order: 20
|
||||
---
|
||||
|
||||
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
---
|
||||
title: Write protect
|
||||
category: reference
|
||||
order: 30
|
||||
---
|
||||
|
||||
The write protected repository feature will make sure users cannot overwrite objects in the SAP system with objects from the git repository. So it helps enforcing that data can only go from the SAP system to the Git repository.
|
||||
|
|
Loading…
Reference in New Issue
Block a user