Open tfsumon opened 11 months ago
@tfsumon , when I got your repo's " tfsumon:chandu " branch to test it in my local first, it did not work. all I did is run " hugo server " and I was not able to see the compage docs. Submodule Folder content/compage was showing empty.
After googling, I tried few commands and one worked for me :
git submodule add -b chandu -f --name compage https://github.com/intelops/compage-docs/ content/compage
When I ran this command it added below content into .gitmodules file :
[submodule "compage"]
path = content/compage
url = https://github.com/intelops/compage-docs/
branch = chandu
Why this below didn't work originally?
[submodule "content/compage"]
path = content/compage
url = https://github.com/intelops/compage-docs/
branch = chandu
ignore = dirty
Do I need to do something after cloning your repo to my local to make it work? What steps to follow?
Start by cloning the main repository using:
git clone [main_repo_url]
Update the existing submodule to synchronize with the remote submodule repository by executing::
git submodule update --init --recursive --remote
Alternatively, clone the repository along with all its submodule files and folders using the command:
git clone --recursive [main_repo_url]
After running the command, your local submodule folder will be updated with the latest files and folders from the remote submodule repository.
content/kubviz
folder as a git submodule. First, create a repository containing the contents of the kubviz folder (without adding external files like .gitignore or readme). Then, add this newly created repository as a git submodule in your main repository using the following command:
git submodule add https://github.com/tfsumon/kubviz.git ./content/kubviz
In this command, ./content/kubviz
represents the folder where you want to place the submodule folder.Reference: Git Tools - Submodules
Hi there :wave:, @dryrunsecurity here, below is a summary of our analysis and findings.
DryRun Security | Status | Findings |
---|---|---|
AppSec Analyzer (beta) | :white_check_mark: | 0 findings |
Secrets Analyzer | :white_check_mark: | 0 findings |
Authn/Authz Analyzer | :white_check_mark: | 0 findings |
Configured Codepaths Analyzer | :white_check_mark: | 0 findings |
Sensitive Files Analyzer | :white_check_mark: | 0 findings |
[!Note] :green_circle: Risk threshold not exceeded.
[!Tip] Get answers to your security questions. Add a comment in this PR starting with @dryrunsecurity. For example...
@dryrunsecurity What are common security issues with web application cookies?
Powered by DryRun Security
The pull request primarily involves updates to Markdown files and the addition of a new Git submodule, which requires careful review to ensure the security of the submodule integration and the absence of any immediate security concerns.
We ran 9 analyzers
against 30 files
and 0 analyzers
had findings. 9 analyzers
had no findings.
:green_circle: Risk threshold not exceeded.
@tfsumon I still didn't get response about follow up questions on this feature. I asked you discord too. I need guidance on how to use this feature (guidance once again)
@tfsumon I still didn't get response about follow up questions on this feature. I asked you discord too. I need guidance on how to use this feature (guidance once again)
@devopstoday11
I'd be happy to help clarify the guidance you're having trouble with. Could you tell me specifically what part of the instructions in the following link is unclear?
https://github.com/intelops/external-docs/pull/89#issuecomment-1931259045
Thank you!
Run & review this pull request in StackBlitz Codeflow.